32 lines
454 B
Nix
32 lines
454 B
Nix
![]() |
{pkgs, ...}: {
|
||
|
imports = [
|
||
|
./fish.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
|
||
|
htop
|
||
|
httpie
|
||
|
jq
|
||
|
procs
|
||
|
ripgrep
|
||
|
tldr
|
||
|
zip
|
||
|
];
|
||
|
}
|