Refactored fish configuration values into separate directory Created fish init shell code for nh and zoxide Reverted removal of cd=z alias since it works now
10 lines
286 B
Nix
10 lines
286 B
Nix
{pkgs}: {
|
|
cd = "z";
|
|
cdi = "zi";
|
|
ls = "${pkgs.eza}/bin/exa";
|
|
cat = "${pkgs.bat}/bin/bat";
|
|
ll = "ls -l";
|
|
osupdate = "${pkgs.nh}/bin/nh os switch";
|
|
homeupdate = "${pkgs.nh}/bin/nh home switch";
|
|
batmon = "watch -n0 upower -i /org/freedesktop/UPower/devices/battery_BAT1";
|
|
}
|