nixcfg/home/features/cli/default.nix
nomadics9 16170bdebc init
2024-10-06 19:48:10 +03:00

27 lines
359 B
Nix

{ pkgs, ... }: {
imports = [
./zsh.nix
./fzf.nix
./neofetch.nix
];
# Starship
programs.starship = {
enable = true;
enableZshIntegration = true;
};
programs.bat = { enable = true; };
home.packages = with pkgs; [
coreutils
fd
htop
ripgrep
tldr
zip
exiftool
nvtopPackages.full
cava
];
}