diff options
Diffstat (limited to '3modules')
| -rw-r--r-- | 3modules/krebs/git.nix | 10 | 
1 files changed, 9 insertions, 1 deletions
| diff --git a/3modules/krebs/git.nix b/3modules/krebs/git.nix index 3c3e93426..2d747cc1a 100644 --- a/3modules/krebs/git.nix +++ b/3modules/krebs/git.nix @@ -29,7 +29,15 @@ let      cgit = mkOption {        type = types.bool;        default = true; -      description = "Enable cgit."; # TODO better desc; talk about nginx +      description = '' +          Enable cgit. +          Cgit is an attempt to create a fast web interface for the git version +          control system, using a built in cache to decrease pressure on the  +          git server. +          cgit in this module is being served via fastcgi nginx.This module +          deploys a http://cgit.<hostname> nginx configuration and enables nginx +          if not yet enabled. +          '';      };      dataDir = mkOption {        type = types.str; | 
