blob: f39ed383bd75501c475e189dbab79d1611f0768f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ pkgs, libs, config, ... }:
{
users.users.git = {
isSystemUser = true;
group = "git";
home = "/var/lib/git-server";
createHome = true;
shell = "${pkgs.git}/bin/git-shell";
openssh.authorizedKeys.keys = config.users.users.admin.openssh.authorizedKeys.keys;
};
users.groups.git = {};
services.openssh.extraConfig = ''
Match user git
AllowTcpForwarding no
AllowAgentForwarding no
PasswordAuthentication no
PermitTTY no
X11Forwarding no
'';
systemd.services.github-mirror = {
enable = true;
wantedBy = ["multi-user.target"];
serviceConfig = {
ExecStart = ''/run/current-system/sw/bin/bash /var/lib/git-server/mirror-script.sh'';
User = ''git'';
Group = ''git'';
};
};
}
|