From 28533213044e865a12c1cbc8c67d24fdca78fca0 Mon Sep 17 00:00:00 2001
From: ahuston-0 <aliceghuston@gmail.com>
Date: Sun, 1 Jun 2025 15:56:44 -0400
Subject: [PATCH] add users group

---
 modules/users.nix | 9 +++++++++
 users/default.nix | 1 +
 2 files changed, 10 insertions(+)
 create mode 100644 modules/users.nix

diff --git a/modules/users.nix b/modules/users.nix
new file mode 100644
index 0000000..4732724
--- /dev/null
+++ b/modules/users.nix
@@ -0,0 +1,9 @@
+{
+  ...
+}:
+
+{
+  users.groups = {
+    users = "100";
+  };
+}
diff --git a/users/default.nix b/users/default.nix
index bd221ef..0149557 100644
--- a/users/default.nix
+++ b/users/default.nix
@@ -14,6 +14,7 @@
   hashedPasswordFile = config.sops.secrets."${name}/user-password".path or null;
   openssh.authorizedKeys.keys = publicKeys;
   extraGroups = [
+    "users"
     "wheel"
     "media"
     (lib.mkIf config.networking.networkmanager.enable "networkmanager")