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
|
|
|
|
htop
|
|
|
|
httpie
|
|
|
|
jq
|
|
|
|
procs
|
|
|
|
ripgrep
|
|
|
|
tldr
|
|
|
|
zip
|
|
|
|
];
|
|
|
|
}
|