From 5e02cdc7ed82ac10375cacfca6920f20f5729059 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 13 Feb 2025 00:29:25 -0800 Subject: Add vps capabilities --- nix/modules/gitweb.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 nix/modules/gitweb.nix (limited to 'nix/modules/gitweb.nix') 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/"; + }; +} -- cgit