From c87b1bb55e2554fb9887bf9b71229694c612a222 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 26 Mar 2024 09:38:22 -0400 Subject: [PATCH] Groups: Add NSBSPL --- machines/kcnhub/users.nix | 1 + machines/kcnhub/users/groups/nsbspl.nix | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 machines/kcnhub/users/groups/nsbspl.nix 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" + ]; + }; +}