feat: Add 'wheel' to default user extraGroups

The user's extraGroups in the NixOS module now contains 'wheel' by default. This change provides the user with more privileges. Consequently, 'wheel' has been removed from the SGX-Attic's 'user.extraGroups' as it became redundant.
This commit is contained in:
Harald Hoyer 2024-07-05 16:13:48 +02:00
parent 029463604a
commit d5f688f7e9
2 changed files with 1 additions and 2 deletions

View file

@ -104,7 +104,7 @@ in
# system to select).
uid = 1000;
extraGroups = [ ] ++ cfg.extraGroups;
extraGroups = [ "wheel" ] ++ cfg.extraGroups;
}
// cfg.extraOptions;
};

View file

@ -10,7 +10,6 @@ with lib.metacfg;
metacfg = {
base.enable = true;
nix.enable = true;
user.extraGroups = [ "wheel" ];
};
virtualisation = {