nixcfg/home/features/cli/default.nix
2024-12-13 21:08:00 +03:00

31 lines
464 B
Nix

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