From b9ce0379696ee45fce5c81b41fa7451b0f5a5a05 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 26 Mar 2024 09:39:35 -0400 Subject: [PATCH] Users: Add Milad --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/milad.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 machines/kcnhub/users/milad.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 7894a12..4def359 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -9,6 +9,7 @@ ./users/srikar.nix ./users/zhenyangsun.nix ./users/ngilab.nix + ./users/milad.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/milad.nix b/machines/kcnhub/users/milad.nix new file mode 100644 index 0000000..927750c --- /dev/null +++ b/machines/kcnhub/users/milad.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.milad = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 110; + packages = with pkgs; [ + + ]; + }; +}