diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2020-07-12 15:53:35 -0400 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2020-07-12 15:53:35 -0400 |
commit | ccb807002ee08043d92e2691afca4d770f08808f (patch) | |
tree | 54a94c6ff5e9967ae5d3e59841915901718c9c80 | |
parent | cafb9f773bc0e411030e3aa14a9e55f9fd53ed12 (diff) |
takemi: Tweak cgit behavior.
-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" |