summaryrefslogtreecommitdiff
path: root/modules/git/user.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/git/user.nix')
-rw-r--r--modules/git/user.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/git/user.nix b/modules/git/user.nix
index 797b452..db2fa0e 100644
--- a/modules/git/user.nix
+++ b/modules/git/user.nix
@@ -1,8 +1,11 @@
-{ config, ... }:
+{ config, lib, pkgs, ... }:
{
users.users.git = {
isNormalUser = true;
+ isSystemUser = lib.mkForce false;
+ uid = 1001;
openssh.authorizedKeys.keys = [ "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDljZ44cNtYqvpeGuUsMRekkjiyaCLraX7GHp2BJGyhvUnCpVz7I5K6SGQ92vnEdkbQpUEs29Cw5RTYTKDXcn1zyl7fi/jLWVLgV3Apc7dbJvhQOTfxB24D5EuOR+3nZFtR1C89VNiB55ahqoBAxGMxr9GkOaKplruT1u+UOAW7wRwCGWoC7ySuVRnEoquWsv3ZHZhxTgmM6b8wnOk9K/to0JY51fbZ56OXcUKRUNkq4QzVMWEhWEpOuSFeufOewCjUIcMQkWzjG3XiqF7gBGnNqbvPlWOB3iLbAdOGBfkAxFlzTBGzwNEGWV39AMWHA1dRBKeETo5sHACsorpIQ3IHR3uHz3YccqhzOBqERqU419ioLdHSQt7uXS54AvZ7ZAMm/RZBeFdupT2dhfOdmvY/2ZHHEuP55A3GExlthaFR+SPKc1q/MhtX/+hBhtkPH+RMP/WPgPbXBCLVdL/ul/vGk8CGCFeKAVrexmz5q+5xax/gDIKfS3ynoMCrWxoto2U= raghus2247@gmail.com" ];
+ shell = "${pkgs.git}/bin/git-shell";
};
}