From f6d9ba27f078a084c2cc69b9696f2e55a8dafe9e Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Tue, 10 Mar 2026 23:14:07 -0500 Subject: [PATCH] user groups --- modules/nix-tools/user.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/nix-tools/user.nix b/modules/nix-tools/user.nix index fdf7142..6b45d84 100644 --- a/modules/nix-tools/user.nix +++ b/modules/nix-tools/user.nix @@ -8,9 +8,11 @@ users.users."${username}" = { isNormalUser = true; home = "/home/${username}"; - extraGroups = lib.optionals isAdmin [ + extraGroups = [ "input" "networkmanager" + ] ++ lib.optionals isAdmin [ + "docker" "wheel" ]; };