summaryrefslogtreecommitdiff
path: root/nix/modules/gitweb.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/modules/gitweb.nix')
-rw-r--r--nix/modules/gitweb.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/nix/modules/gitweb.nix b/nix/modules/gitweb.nix
deleted file mode 100644
index 69cb951..0000000
--- a/nix/modules/gitweb.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{ lib, config, ... }:
-{
- services.gitweb = {
- gitwebTheme = lib.mkDefault config.monorepo.profiles.server.enable;
- projectroot = "/srv/git/";
- extraConfig = ''
-our $export_ok = "git-daemon-export-ok";
-our $site_name = "NullRing Git Server";
-our $site_header = "NullRing Projects";
-'';
- };
-}