+2
-4
flake.nix
+2
-4
flake.nix
···
297
297
environment.systemPackages = with pkgs; [ git ];
298
298
299
299
users.users.git = {
300
-
isSystemUser = true;
300
+
isNormalUser = true;
301
301
home = "/home/git";
302
302
createHome = true;
303
-
shell = "${pkgs.shadow}/bin/nologin";
304
303
uid = 1000;
305
304
group = "git";
306
-
extraGroups = ["sudo"];
307
305
};
308
306
309
307
users.groups.git = {};
···
321
319
mode = "0555";
322
320
text = ''
323
321
#!${pkgs.stdenv.shell}
324
-
${pkgs.keyfetch}/bin/keyfetch -repoguard-path ${pkgs.repoguard}/bin/repoguard -log-path /home/git/repoguard.log
322
+
${pkgs.keyfetch}/bin/keyfetch -repoguard-path ${pkgs.repoguard}/bin/repoguard -log-path /tmp/repoguard.log
325
323
'';
326
324
};
327
325