aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/git-daemon.nix
blob: e71356e85b39a7334b0c4f697c0704c0387ccdd7 (plain)
1
2
3
4
5
6
7
8
9
{ config, lib, ... }:
{
  services.gitDaemon = {
    enable = lib.mkDefault config.monorepo.profiles.server.enable;
    exportAll = true;
    listenAddress = "0.0.0.0";
    basePath = "/srv/git";
  };
}