aboutsummaryrefslogtreecommitdiff
path: root/nix/hosts/wildcat
diff options
context:
space:
mode:
Diffstat (limited to 'nix/hosts/wildcat')
-rw-r--r--nix/hosts/wildcat/configuration.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/nix/hosts/wildcat/configuration.nix b/nix/hosts/wildcat/configuration.nix
index 6e6cbcb..bc28ae2 100644
--- a/nix/hosts/wildcat/configuration.nix
+++ b/nix/hosts/wildcat/configuration.nix
@@ -34,8 +34,9 @@
services.cgit.main = {
enable = true;
- user = "cgit";
- group = "cgit";
+ package = pkgs.cgit-pink;
+ user = "git";
+ group = "git";
nginx.virtualHost = "git.fcuny.net";
scanPath = "/var/lib/gitolite/repositories";
settings = {
@@ -43,6 +44,7 @@
logo = "/cgit.png";
favicon = "/favicon.ico";
readme = ":README.md";
+ project-list = "/var/lib/gitolite/projects.list";
about-filter = "${pkgs.cgit-pink}/lib/cgit/filters/about-formatting.sh";
source-filter = "${pkgs.cgit-pink}/lib/cgit/filters/syntax-highlighting.py";
clone-url = (lib.concatStringsSep " " [
@@ -61,8 +63,8 @@
max-atom-items = 108;
max-commit-count = 250;
max-repo-count = 500;
- snapshots = "tar.xz";
- root-title = "¯\_(ツ)_/¯";
+ snapshots = "tar.gz";
+ root-title = "¯\\_(ツ)_/¯";
root-desc = "source code of my various projects";
};
};