aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/gitweb.nix
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@gmail.com>2025-02-13 00:29:25 -0800
committerPreston Pan <ret2pop@gmail.com>2025-02-13 00:29:25 -0800
commit5e02cdc7ed82ac10375cacfca6920f20f5729059 (patch)
tree53466f89296545a8df26fbc2e30a37a395a0613a /nix/modules/gitweb.nix
parentf10285de4d0b5c69d026e948a9d9d7278a2ffb64 (diff)
Add vps capabilities
Diffstat (limited to 'nix/modules/gitweb.nix')
-rw-r--r--nix/modules/gitweb.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/nix/modules/gitweb.nix b/nix/modules/gitweb.nix
new file mode 100644
index 0000000..51cff87
--- /dev/null
+++ b/nix/modules/gitweb.nix
@@ -0,0 +1,7 @@
+{ lib, config, ... }:
+{
+ services.gitweb = {
+ gitwebTheme = true;
+ projectroot = "/srv/git/";
+ };
+}