nixcfg/home/features/cli/default.nix

35 lines
495 B
Nix
Raw Normal View History

2024-09-03 18:01:56 +02:00
{pkgs, ...}: {
imports = [
./fish.nix
2024-09-05 14:34:40 +02:00
./fzf.nix
./neofetch.nix
2024-09-03 18:01:56 +02:00
];
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
2024-10-05 06:46:12 +02:00
gcc
2024-09-03 18:01:56 +02:00
htop
httpie
jq
procs
ripgrep
tldr
zip
];
}