nixos/home/env/fish.nix

13 lines
342 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
2023-03-29 15:59:39 +01:00
programs.fish = {
enable = true;
shellAbbrs = {
lg = "lazygit";
2023-05-16 15:59:49 +01:00
nixos-update = "sudo git -C /etc/nixos/config pull && sudo nixos-rebuild switch";
};
2023-03-29 15:59:39 +01:00
};
programs.keychain.enableFishIntegration = true;
programs.starship.enableFishIntegration = true;
programs.nix-index.enableFishIntegration = true;
}