15 lines
359 B
Nix
15 lines
359 B
Nix
{config, ...}: {
|
|
flake.modules.nixos.base = {pkgs, ...}: {
|
|
programs.fish.enable = true;
|
|
users.users.${config.flake.meta.user.name}.shell = pkgs.fish;
|
|
documentation.man.generateCaches = false;
|
|
};
|
|
|
|
flake.modules.homeManager.base = {
|
|
programs.fish = {
|
|
enable = true;
|
|
};
|
|
|
|
programs.starship.enableFishIntegration = true;
|
|
};
|
|
}
|