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