nixcfg/home/features/cli/default.nix
2024-10-18 18:25:21 +03:00

26 lines
350 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
];
}