nixos/home/env/fish.nix

15 lines
345 B
Nix
Raw Normal View History

{ ... }:
{
2023-03-29 15:59:39 +01:00
programs.fish = {
enable = true;
shellAbbrs = {
lg = "lazygit";
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;
}