NixToSee/modules/software/shells/fish.nix
2025-01-13 03:14:46 +01:00

14 lines
287 B
Nix

{ ... }:{
programs = {
fish = {
enable = true;
useBabelfish = true;
shellInit = ''
starship init fish | source
'';
};
nix-index.enableFishIntegration = true;
direnv.enableFishIntegration = true;
foot.enableFishIntegration = true;
};
}