From cd960974ffb96d22548244ae629def897db07d54 Mon Sep 17 00:00:00 2001 From: Antoine Fauroux Date: Tue, 10 Jun 2025 13:38:41 -0400 Subject: [PATCH] kcnhub: Add Umar --- machines/kcnhub/users.nix | 3 ++- machines/kcnhub/users/umar.nix | 11 +++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 machines/kcnhub/users/umar.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 7c2daf7..9064688 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -21,7 +21,8 @@ ./users/iffat.nix ./users/jkaethee.nix ./users/afauroux.nix - + ./users/umar.nix + # Groups ./users/groups/admin.nix ./users/groups/nfrf.nix diff --git a/machines/kcnhub/users/umar.nix b/machines/kcnhub/users/umar.nix new file mode 100644 index 0000000..7b94f8a --- /dev/null +++ b/machines/kcnhub/users/umar.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.umar = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 122; + packages = with pkgs; [ + + ]; + }; +}