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:
parent
029463604a
commit
d5f688f7e9
|
@ -104,7 +104,7 @@ in
|
|||
# system to select).
|
||||
uid = 1000;
|
||||
|
||||
extraGroups = [ ] ++ cfg.extraGroups;
|
||||
extraGroups = [ "wheel" ] ++ cfg.extraGroups;
|
||||
}
|
||||
// cfg.extraOptions;
|
||||
};
|
||||
|
|
|
@ -10,7 +10,6 @@ with lib.metacfg;
|
|||
metacfg = {
|
||||
base.enable = true;
|
||||
nix.enable = true;
|
||||
user.extraGroups = [ "wheel" ];
|
||||
};
|
||||
|
||||
virtualisation = {
|
||||
|
|
Loading…
Reference in a new issue