nixcfg/home/features/cli/default.nix
2024-10-05 06:46:12 +02:00

35 lines
495 B
Nix

{pkgs, ...}: {
imports = [
./fish.nix
./fzf.nix
./neofetch.nix
];
programs.zoxide = {
enable = true;
enableFishIntegration = true;
};
programs.eza = {
enable = true;
enableFishIntegration = true;
enableBashIntegration = true;
extraOptions = ["-l" "--icons" "--git" "-a"];
};
programs.bat = {enable = true;};
home.packages = with pkgs; [
coreutils
fd
gcc
htop
httpie
jq
procs
ripgrep
tldr
zip
];
}