tangled
alpha
login
or
join now
willdot.net
/
tangled-fork
forked from
tangled.org/core
Monorepo for Tangled
0
fork
atom
overview
issues
pulls
pipelines
nix: fix push on knotserver nixos module
oppi.li
11 months ago
e230a282
ac2d5b68
+2
-4
1 changed file
expand all
collapse all
unified
split
flake.nix
+2
-4
flake.nix
···
297
environment.systemPackages = with pkgs; [ git ];
298
299
users.users.git = {
300
-
isSystemUser = true;
301
home = "/home/git";
302
createHome = true;
303
-
shell = "${pkgs.shadow}/bin/nologin";
304
uid = 1000;
305
group = "git";
306
-
extraGroups = ["sudo"];
307
};
308
309
users.groups.git = {};
···
321
mode = "0555";
322
text = ''
323
#!${pkgs.stdenv.shell}
324
-
${pkgs.keyfetch}/bin/keyfetch -repoguard-path ${pkgs.repoguard}/bin/repoguard -log-path /home/git/repoguard.log
325
'';
326
};
327
···
297
environment.systemPackages = with pkgs; [ git ];
298
299
users.users.git = {
300
+
isNormalUser = true;
301
home = "/home/git";
302
createHome = true;
0
303
uid = 1000;
304
group = "git";
0
305
};
306
307
users.groups.git = {};
···
319
mode = "0555";
320
text = ''
321
#!${pkgs.stdenv.shell}
322
+
${pkgs.keyfetch}/bin/keyfetch -repoguard-path ${pkgs.repoguard}/bin/repoguard -log-path /tmp/repoguard.log
323
'';
324
};
325