From b61299b0b2d96f5a33a6caf2b6c2c705ece060ad Mon Sep 17 00:00:00 2001 From: David Crompton Date: Wed, 31 Jul 2024 15:45:56 -0400 Subject: [PATCH] KCNHUB: users: add Iffat --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/iffat.nix | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 machines/kcnhub/users/iffat.nix diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 12e7337..449df7e 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -17,6 +17,7 @@ ./users/michael.nix ./users/ryan.nix ./users/josh.nix + ./users/iffat.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/iffat.nix b/machines/kcnhub/users/iffat.nix new file mode 100644 index 0000000..2139180 --- /dev/null +++ b/machines/kcnhub/users/iffat.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.iffat = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 118; + packages = with pkgs; [ + + ]; + }; +}