Setup gitolite

This commit is contained in:
Daniel Frank 2019-11-08 22:24:15 +01:00
commit 7f2ba45f29
Signed by: tokudan
GPG key ID: 063CCCAD04182D32
3 changed files with 17 additions and 0 deletions

11
gitolite.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, lib, pkgs, ... }:
{
services.gitolite = {
enable = true;
dataDir = "/srv/gitolite";
user = "git";
group = "git";
adminPubkey = "";
};
}