From 4ec6f344b3ab9eff5e6c4fec1fab1dc15e106c68 Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Mon, 22 Sep 2025 23:25:33 -0400 Subject: [PATCH] make wo2w group existent --- common/users.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/common/users.nix b/common/users.nix index a58e0b3..0b11032 100755 --- a/common/users.nix +++ b/common/users.nix @@ -1,12 +1,15 @@ { hostName, config, ... }: { - users.users.wo2w = { - isNormalUser = true; - description = "${hostName}"; - extraGroups = [ "networkmanager" "wheel" ]; + users = { + users.wo2w = { + isNormalUser = true; + description = "${hostName}"; + extraGroups = [ "networkmanager" "wheel" ]; - # make new user logins (iso/vm/new machine) use a default password - initialPassword = "1234"; + # make new user logins (iso/vm/new machine) use a default password + initialPassword = "1234"; + }; + groups.wo2w = {}; }; } \ No newline at end of file