nixpkgs/nixos/modules/services/misc/gitweb.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1.3 KiB
Nix
Raw Normal View History

2018-03-29 13:42:49 +00:00
{ config, lib, pkgs, ... }:
let
cfg = config.services.gitweb;
in
{
options.services.gitweb = {
projectroot = lib.mkOption {
2018-03-29 13:42:49 +00:00
default = "/srv/git";
type = lib.types.path;
2018-03-29 13:42:49 +00:00
description = ''
Path to git projects (bare repositories) that should be served by
gitweb. Must not end with a slash.
'';
};
extraConfig = lib.mkOption {
2018-03-29 13:42:49 +00:00
default = "";
type = lib.types.lines;
2018-03-29 13:42:49 +00:00
description = ''
Verbatim configuration text appended to the generated gitweb.conf file.
'';
example = ''
$feature{'highlight'}{'default'} = [1];
$feature{'ctags'}{'default'} = [1];
2018-04-06 19:36:03 +00:00
$feature{'avatar'}{'default'} = ['gravatar'];
2018-03-29 13:42:49 +00:00
'';
};
gitwebTheme = lib.mkOption {
2018-04-17 17:06:44 +00:00
default = false;
type = lib.types.bool;
2018-04-17 17:06:44 +00:00
description = ''
Use an alternative theme for gitweb, strongly inspired by GitHub.
'';
};
gitwebConfigFile = lib.mkOption {
2018-03-29 13:42:49 +00:00
default = pkgs.writeText "gitweb.conf" ''
# path to git projects (<project>.git)
$projectroot = "${cfg.projectroot}";
$highlight_bin = "${pkgs.highlight}/bin/highlight";
${cfg.extraConfig}
'';
defaultText = lib.literalMD "generated config file";
type = lib.types.path;
2018-03-29 13:42:49 +00:00
readOnly = true;
internal = true;
};
};
meta.maintainers = [ ];
2018-03-29 13:42:49 +00:00
}