diff options
author | Tim Keller <tjkeller.xyz> | 2024-11-05 10:00:57 -0600 |
---|---|---|
committer | Tim Keller <tjkeller.xyz> | 2024-11-05 10:00:57 -0600 |
commit | 78d758b4b22e1150b32f3643ef5a9f04f76abf26 (patch) | |
tree | 0e770f821caa8040ccc4ff383824c92fe5641b50 /modules/root/normaluser.nix | |
parent | e2796bbd4ff55fcaacbceddd996890593c2b762a (diff) | |
download | nixos-78d758b4b22e1150b32f3643ef5a9f04f76abf26.tar.xz nixos-78d758b4b22e1150b32f3643ef5a9f04f76abf26.zip |
fix bugs for t495 and cleanup
Diffstat (limited to 'modules/root/normaluser.nix')
-rw-r--r-- | modules/root/normaluser.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/root/normaluser.nix b/modules/root/normaluser.nix index 192e64e..4be90e8 100644 --- a/modules/root/normaluser.nix +++ b/modules/root/normaluser.nix @@ -3,6 +3,6 @@ description = userDetails.fullname; #home = userDetails.home.root; isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ "wheel" "docker" ]; }; } |