fix(nixos): Fucking permissions
This commit is contained in:
parent
9f4e8fff21
commit
bf94a6237a
1 changed files with 7 additions and 1 deletions
|
@ -20,11 +20,17 @@ in {
|
|||
users = {
|
||||
mutableUsers = false;
|
||||
|
||||
groups = {
|
||||
"compat" = {
|
||||
gid = 1000;
|
||||
};
|
||||
};
|
||||
|
||||
users."${my.name}" = {
|
||||
isNormalUser = true;
|
||||
description = my.fullName;
|
||||
extraGroups =
|
||||
["wheel"]
|
||||
["wheel" "compat"]
|
||||
++ (lib.optional config.networking.networkmanager.enable "networkmanager")
|
||||
++ (lib.optional config.virtualisation.docker.enable "docker");
|
||||
hashedPassword =
|
||||
|
|
Loading…
Reference in a new issue