nixos/modules/common/fish.nix
2025-05-22 21:19:25 -04:00

12 lines
221 B
Nix

{pkgs, ...}: {
programs.fish = {
enable = true;
interactiveShellInit = ''
direnv hook fish | source
neofetch
'';
};
environment.shells = [pkgs.fish];
users.defaultUserShell = pkgs.fish;
}