···2929 cache-size=1000
3030 scan-path=/srv/git
3131 '';
3232- type = types.string;
3232+ type = types.lines;
3333 description = ''
3434 Verbatim contents of the cgit runtime configuration file. Documentation
3535 (with cgitrc example file) is available in "man cgitrc". Or online:
···25252626 projectroot = mkOption {
2727 default = "/srv/git";
2828- type = types.str;
2828+ type = types.path;
2929 description = ''
3030 Path to git projects (bare repositories) that should be served by
3131 gitweb. Must not end with a slash.
···34343535 extraConfig = mkOption {
3636 default = "";
3737- type = types.str;
3737+ type = types.lines;
3838 description = ''
3939 Verbatim configuration text appended to the generated gitweb.conf file.
4040 '';