From 8d151a139925bfd2d021806ec1c24f8d01d3b4bc Mon Sep 17 00:00:00 2001 From: David Crompton Date: Fri, 1 Sep 2023 11:16:44 -0400 Subject: [PATCH] Added Spandan to mousetbi group --- machines/kcnhub/users/spandan.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/machines/kcnhub/users/spandan.nix b/machines/kcnhub/users/spandan.nix index fc752ed..8941aa0 100644 --- a/machines/kcnhub/users/spandan.nix +++ b/machines/kcnhub/users/spandan.nix @@ -1,11 +1,15 @@ { pkgs, ... }: { users.users.spandan = { isNormalUser = true; - extraGroups = [ "wheel" ]; + extraGroups = [ + "wheel" + "mousetbi" + ]; homeSize = "50g"; homeProjectId = 104; packages = with pkgs; [ ]; }; + users.groups."mousetbi" = { }; }