blob: 6104ced602c0f1b84a888862976cd798065c7ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ pkgs, ... }:
{
services = {
gitolite = {
enable = true;
enableGitAnnex = true;
dataDir = "/srv/git";
user = "git";
group = "git";
extraGitoliteRc = ''
$RC{SITE_INFO} = 'a computer is a bicycle for the mind.';
'';
adminPubkey = builtins.readFile ../Keys/Ben.pub;
};
};
}
|