From d35c9ffc375b5a90ee783485362d2c65ec1c9854 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 23 Apr 2024 10:12:07 -0400 Subject: [PATCH] Users: Add Michael, Ryan, Reza, Yupeng, Zoe --- machines/kcnhub/users.nix | 5 +++++ machines/kcnhub/users/michael.nix | 12 ++++++++++++ machines/kcnhub/users/reza.nix | 12 ++++++++++++ machines/kcnhub/users/ryan.nix | 12 ++++++++++++ machines/kcnhub/users/yupeng.nix | 12 ++++++++++++ machines/kcnhub/users/zoe.nix | 12 ++++++++++++ 6 files changed, 65 insertions(+) create mode 100644 machines/kcnhub/users/michael.nix create mode 100644 machines/kcnhub/users/reza.nix create mode 100644 machines/kcnhub/users/ryan.nix create mode 100644 machines/kcnhub/users/yupeng.nix create mode 100644 machines/kcnhub/users/zoe.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 8764494..9a4eda0 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -11,6 +11,11 @@ ./users/ngilab.nix ./users/milad.nix ./users/nooshin.nix + ./users/zoe.nix + ./users/yupeng.nix + ./users/reza.nix + ./users/michael.nix + ./users/ryan.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/michael.nix b/machines/kcnhub/users/michael.nix new file mode 100644 index 0000000..ac1a429 --- /dev/null +++ b/machines/kcnhub/users/michael.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.michael = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 114; + initialHashedPassword = "$y$j9T$i8NenYjqKmfJvKvmx2UmY0$5lqRmnrq2PDjELQj4F7xr/MS2Dd0iEOXDWp9kJwXYZ7"; + packages = with pkgs; [ + + ]; + }; +} diff --git a/machines/kcnhub/users/reza.nix b/machines/kcnhub/users/reza.nix new file mode 100644 index 0000000..dbf8488 --- /dev/null +++ b/machines/kcnhub/users/reza.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.reza = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 115; + initialHashedPassword = "$y$j9T$i8NenYjqKmfJvKvmx2UmY0$5lqRmnrq2PDjELQj4F7xr/MS2Dd0iEOXDWp9kJwXYZ7"; + packages = with pkgs; [ + + ]; + }; +} diff --git a/machines/kcnhub/users/ryan.nix b/machines/kcnhub/users/ryan.nix new file mode 100644 index 0000000..b9ef5fd --- /dev/null +++ b/machines/kcnhub/users/ryan.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.ryan = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 116; + initialHashedPassword = "$y$j9T$i8NenYjqKmfJvKvmx2UmY0$5lqRmnrq2PDjELQj4F7xr/MS2Dd0iEOXDWp9kJwXYZ7"; + packages = with pkgs; [ + + ]; + }; +} diff --git a/machines/kcnhub/users/yupeng.nix b/machines/kcnhub/users/yupeng.nix new file mode 100644 index 0000000..6946b94 --- /dev/null +++ b/machines/kcnhub/users/yupeng.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.yupeng = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 113; + initialHashedPassword = "$y$j9T$i8NenYjqKmfJvKvmx2UmY0$5lqRmnrq2PDjELQj4F7xr/MS2Dd0iEOXDWp9kJwXYZ7"; + packages = with pkgs; [ + + ]; + }; +} diff --git a/machines/kcnhub/users/zoe.nix b/machines/kcnhub/users/zoe.nix new file mode 100644 index 0000000..77b28e1 --- /dev/null +++ b/machines/kcnhub/users/zoe.nix @@ -0,0 +1,12 @@ +{ pkgs, ... }: { + users.users.zoe = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 112; + initialHashedPassword = "$y$j9T$i8NenYjqKmfJvKvmx2UmY0$5lqRmnrq2PDjELQj4F7xr/MS2Dd0iEOXDWp9kJwXYZ7"; + packages = with pkgs; [ + + ]; + }; +}