nixos/home/env/fish.nix

12 lines
247 B
Nix
Raw Normal View History

{ ... }:
{
2023-03-29 15:59:39 +01:00
programs.fish = {
enable = true;
2023-05-16 13:05:40 +01:00
shellAbbrs = { lg = "lazygit"; };
2023-03-29 15:59:39 +01:00
};
programs.keychain.enableFishIntegration = true;
programs.starship.enableFishIntegration = true;
programs.nix-index.enableFishIntegration = true;
}