From 1af64979e6fd1d5acbb6c31e85a197ed04744ada Mon Sep 17 00:00:00 2001 From: Jonni Liljamo Date: Thu, 22 Jan 2026 22:59:21 +0200 Subject: [PATCH] j: init --- modules/users/j.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 modules/users/j.nix diff --git a/modules/users/j.nix b/modules/users/j.nix new file mode 100644 index 0000000..baa73b3 --- /dev/null +++ b/modules/users/j.nix @@ -0,0 +1,11 @@ +let + username = "j"; +in { + flake.modules.nixos.${username} = {...}: { + users.users.${username} = { + isNormalUser = true; + extraGroups = ["wheel"]; + home = "/home/${username}"; + }; + }; +} -- 2.44.1