diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-14 08:45:19 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-02-14 08:45:19 -0700 |
| commit | 0cbe7c2309172b9dbe7f45143b1825d2bbf8fe02 (patch) | |
| tree | f6a6064017ea26d1cc753295ce8fcfd482ca6022 /modules/users | |
| parent | f4f1141b94a56017c04a3b0b5bef276083cd501e (diff) | |
group must be created empty?
Diffstat (limited to 'modules/users')
| -rw-r--r-- | modules/users/git.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/users/git.nix b/modules/users/git.nix index 85dd168..f528e6f 100644 --- a/modules/users/git.nix +++ b/modules/users/git.nix @@ -1,11 +1,12 @@ { pkgs, ... }: { users = { - groups.git = { "git" }; + groups.git = { }; mutableUsers = false; users.git = { isNormalUser = false; isSystemUser = true; description = "user for git and building automation"; + group = "git"; extraGroups = [ "builders" ]; openssh.authorizedKeys.keys = [ |
