From 0540531fb8365774dbba564165f9bd71618f859c Mon Sep 17 00:00:00 2001 From: Olaf Kolkman Date: Sun, 27 Jul 2025 15:35:07 +0200 Subject: [PATCH] gitdeveloper group added --- hosts/darwin/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/darwin/default.nix b/hosts/darwin/default.nix index aa2e3bf..e22105b 100644 --- a/hosts/darwin/default.nix +++ b/hosts/darwin/default.nix @@ -57,6 +57,17 @@ in ''; }; + + users.groups= { + gidevelopert={ + description="Git Common Rights"; + gid=500; + name= "gitdeveloper"; + members = [ "olaf" ] ; + }; + }; + + users.knownGroups=["gitdeveloper"]; # Turn off NIX_PATH warnings now that we're using flakes system.checks.verifyNixPath = false;