Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 525f0b043652
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b05870d22327
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jun 26, 2019

  1. nixos/cgit: fix config example

    The order of the keys matters: scan-path must be the last key for other settings
    to be taken into account.
    pacien authored and bjornfor committed Jun 26, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    b05870d View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 nixos/modules/services/web-servers/lighttpd/cgit.nix
4 changes: 2 additions & 2 deletions nixos/modules/services/web-servers/lighttpd/cgit.nix
Original file line number Diff line number Diff line change
@@ -42,10 +42,10 @@ in
configText = mkOption {
default = "";
example = ''
cache-size=1000
scan-path=/srv/git
source-filter=''${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py
about-filter=''${pkgs.cgit}/lib/cgit/filters/about-formatting.sh
cache-size=1000
scan-path=/srv/git
'';
type = types.lines;
description = ''