From 215870a0b70dc936c3c04d1fea1091b516d36666 Mon Sep 17 00:00:00 2001 From: oqyude Date: Sun, 18 Jan 2026 16:18:28 +0300 Subject: [PATCH] 123 --- modules/users.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/modules/users.nix b/modules/users.nix index 701edaa..9bb6acf 100644 --- a/modules/users.nix +++ b/modules/users.nix @@ -32,6 +32,26 @@ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKduJia+unaQQdN6X5syaHvnpIutO+yZwvfiCP4qKQ/P" ]; }; + "2" = { + name = "${xlib.users.new}"; + isNormalUser = true; + description = "Snity - guest"; + initialPassword = "1234"; + hashedPasswordFile = config.sops.secrets.hashed_password.path; # hashed_password + homeMode = "700"; + home = "/home/${xlib.users.new}"; + extraGroups = [ + "beets" + "audio" + "disk" + "gamemode" + "networkmanager" + "pipewire" + "wheel" + "libvirtd" + "qemu-libvirtd" + ]; + }; }; };