14 lines
223 B
Nix
14 lines
223 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./common.nix ];
|
|
programs.fish = {
|
|
enable = true;
|
|
shellAbbrs = {
|
|
update = "sudo nixos-rebuild switch --upgrade";
|
|
nr = "sudo nixos-rebuild";
|
|
lg = "lazygit";
|
|
};
|
|
};
|
|
}
|