diff options
Diffstat (limited to 'Biz/Users.nix')
-rw-r--r-- | Biz/Users.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Biz/Users.nix b/Biz/Users.nix index 0e544f4..2f945d6 100644 --- a/Biz/Users.nix +++ b/Biz/Users.nix @@ -37,7 +37,7 @@ in { isNormalUser = true; home = "/home/ben"; openssh.authorizedKeys.keys = readKeys ./Keys/Ben.pub; - extraGroups = [ "wheel" "docker" "bitcoind-mainnet" ]; + extraGroups = [ "wheel" "docker" "bitcoind-mainnet" "git" ]; hashedPassword = "$6$SGhdoRB6DhWe$elW8RQE1ebe8JKf1ALW8jGZTPCyn2rpq/0J8MV/A9y8qFMEhA.Z2eiexMgptohZAK5kcGOc6HIUgNzJqnDUvY."; }; @@ -46,7 +46,7 @@ in { isNormalUser = true; home = "/home/nick"; openssh.authorizedKeys.keys = readKeys ./Keys/Nick.pub; - extraGroups = [ "docker" ]; + extraGroups = [ "docker" "git" ]; }; }; } |