From 92fdcc0cb87730f71c7ad7097bb9aa0de8a1eaec Mon Sep 17 00:00:00 2001 From: Antoine Fauroux Date: Thu, 13 Aug 2026 12:19:35 -0400 Subject: [PATCH] kcnhub: users: add elena --- machines/kcnhub/users.nix | 2 ++ machines/kcnhub/users/elena.nix | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100644 machines/kcnhub/users/elena.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index e2b005e..755accf 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -24,10 +24,12 @@ ./users/umar.nix ./users/arthur.nix ./users/raiyan.nix + ./users/elena.nix # Groups ./users/groups/admin.nix ./users/groups/nfrf.nix + ./users/groups/ngilab_shared.nix ./users/groups/nsbspl.nix ]; } diff --git a/machines/kcnhub/users/elena.nix b/machines/kcnhub/users/elena.nix new file mode 100644 index 0000000..e539366 --- /dev/null +++ b/machines/kcnhub/users/elena.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.elena = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 125; + packages = with pkgs; [ + + ]; + }; +}