Files
nixos-config/modules/shell.nix
2026-03-09 15:00:48 +00:00

8 lines
195 B
Nix

{config, ...}: {
flake.nixosModules.shell = {pkgs, ...}: {
programs.fish.enable = true;
users.users.${config.username}.shell = pkgs.fish;
users.defaultUserShell = pkgs.fish;
};
}