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