17 lines
364 B
Nix
17 lines
364 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;
|
|
};
|
|
}
|