12 lines
247 B
Nix
12 lines
247 B
Nix
{ ... }:
|
|
|
|
{
|
|
programs.fish = {
|
|
enable = true;
|
|
shellAbbrs = { lg = "lazygit"; };
|
|
};
|
|
programs.keychain.enableFishIntegration = true;
|
|
programs.starship.enableFishIntegration = true;
|
|
programs.nix-index.enableFishIntegration = true;
|
|
}
|