diff options
-rw-r--r-- | takemi.scm | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -56,7 +56,8 @@ (rc-file (gitolite-rc-file ;; Grant read access to git group so ;; cgit will work. - (umask #o0027))))) + (umask #o0027) + (git-config-keys "gitweb\\..*"))))) (service certbot-service-type (certbot-configuration (email "dthompson2@worcester.edu") @@ -104,6 +105,14 @@ (project-list "/var/lib/gitolite/projects.list") (repository-directory "/var/lib/gitolite/repositories") (remove-suffix? #t) + (root-desc "all i wanted was a pepsi") + (enable-git-config? #t) + (enable-index-links? #t) + (enable-index-owner? #f) + (enable-commit-graph? #t) + (enable-log-filecount? #t) + (enable-log-linecount? #t) + (clone-url '("https://git.dthompson.us/$CGIT_REPO_URL")) ;; Is there a way to avoid this wrapper script? (source-filter (program-file "cgit-syntax-highlight" |