diff --git a/users.nix b/users.nix index 5e7cb7f..2b1e2df 100644 --- a/users.nix +++ b/users.nix @@ -12,7 +12,7 @@ in name: passwd: { isNormalUser = true; home = "/server/current/${name}"; - groups = [ "current" ]; + extraGroups = [ "current" ]; shell = pkgs.bash; password = passwd; };