diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 9064688..46db548 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -22,6 +22,7 @@ ./users/jkaethee.nix ./users/afauroux.nix ./users/umar.nix + ./users/arthur.nix # Groups ./users/groups/admin.nix diff --git a/machines/kcnhub/users/arthur.nix b/machines/kcnhub/users/arthur.nix new file mode 100644 index 0000000..6d91382 --- /dev/null +++ b/machines/kcnhub/users/arthur.nix @@ -0,0 +1,11 @@ +{ pkgs, ... }: { + users.users.arthur = { + isNormalUser = true; + extraGroups = [ ]; + homeSize = "50g"; + homeProjectId = 123; + packages = with pkgs; [ + + ]; + }; +}