summaryrefslogtreecommitdiff
path: root/nix/modules/gitweb.nix
blob: c98e4c6edd0547691159d42d98f976c052d0fe52 (plain)
1
2
3
4
5
6
7
8
9
10
{ lib, config, ... }:
{
  services.gitweb = {
    gitwebTheme = lib.mkDefault config.monorepo.profiles.server.enable;
    projectroot = "/srv/git/";
    extraConfig = ''
our $export_ok = "git-daemon-export-ok";
'';
  };
}