add: more system modules
This commit is contained in:
parent
47eb3e0691
commit
793cc3131c
17 changed files with 291 additions and 56 deletions
17
system/profiles/base/default.nix
Normal file
17
system/profiles/base/default.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
cfg = config.systemProfile.base;
|
||||
in
|
||||
|
||||
{
|
||||
config = lib.mkIf cfg.enable {
|
||||
systemModules = {
|
||||
security.enable = true;
|
||||
nixOptions.enable = true;
|
||||
pipewire.enable = true;
|
||||
networking.enable = true;
|
||||
locale.enable = true;
|
||||
}
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue