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