diff --git a/machines/kcnhub/users.nix b/machines/kcnhub/users.nix index 7fd1eed..7894a12 100644 --- a/machines/kcnhub/users.nix +++ b/machines/kcnhub/users.nix @@ -13,5 +13,6 @@ # Groups ./users/groups/admin.nix ./users/groups/nfrf.nix + ./users/groups/nsbspl.nix ]; } diff --git a/machines/kcnhub/users/groups/nsbspl.nix b/machines/kcnhub/users/groups/nsbspl.nix new file mode 100644 index 0000000..c955478 --- /dev/null +++ b/machines/kcnhub/users/groups/nsbspl.nix @@ -0,0 +1,9 @@ +{ ... }: { + users.groups."nsbspl" = { + members = [ + "david" + "alan" + "nooshin" + ]; + }; +}