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; [ + + ]; + }; +}