about summary refs log tree commit diff
path: root/colmena/cobalt/services/git-daemon.nix
blob: f0dbad6f1d256a32c02ec1eb23ea39436803a0dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  services.gitDaemon = {
      enable = true;
      createUserAndGroup = false;
      basePath = "/var/lib/gitolite/repositories";
  };

  networking.firewall.allowedTCPPorts = [ 9418 ];

  disabledModules = [ "services/networking/git-daemon.nix" ];

  imports = [
    ../modules/git-daemon.nix
  ];
}