blob: d733b3857776572367e98a1a49f2329ddbf9ddf1 (
plain)
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
|
{ config, pkgs, ... }:
{
imports = [
./cgit.nix
./shell-commands
];
users.users.git = {
isSystemUser = true;
group = "git";
createHome = true;
homeMode = "750";
home = "/srv/git";
shell = "${pkgs.git}/bin/git-shell";
openssh.authorizedKeys.keys = with config.personal.lib.publicKeys.ssh; [
latitude-7490
precision-3571
dragonfly-g4
optiplex-9030
];
};
users.groups.git = { };
}
|