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