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

15
profiles/server.nix Normal file
View File

@@ -0,0 +1,15 @@
{
lib,
config,
...
}:
{
options = {
profiles.server.enable = lib.mkEnableOption "headless server profile";
};
config = lib.mkIf config.profiles.server.enable {
profiles.base.enable = lib.mkDefault true;
workstation.enable = lib.mkDefault true;
};
}