nixos/home/packages/env/fish.nix

14 lines
223 B
Nix
Raw Normal View History

{ ... }:
{
imports = [ ./common.nix ];
2023-03-29 15:59:39 +01:00
programs.fish = {
enable = true;
shellAbbrs = {
update = "sudo nixos-rebuild switch --upgrade";
nr = "sudo nixos-rebuild";
2023-03-29 15:59:39 +01:00
lg = "lazygit";
};
};
}