feat: setup initial profiles

This commit is contained in:
2026-03-07 15:48:46 +01:00
parent f3aa4847c5
commit d60721f955
4 changed files with 56 additions and 0 deletions

17
profiles/base.nix Normal file
View File

@@ -0,0 +1,17 @@
{
lib,
config,
...
}:
{
options = {
profiles.base.enable = lib.mkEnableOption "base profile for all machines";
};
config = lib.mkIf config.profiles.base.enable {
openssh.enable = lib.mkDefault true;
zsh.enable = lib.mkDefault true;
localisation.enable = lib.mkDefault true;
gnupg.enable = lib.mkDefault true;
};
}