summaryrefslogtreecommitdiff
path: root/modules/nixos/cgit.nix
blob: fc331ecd37759d17fb599bd79cdd96916eba6935 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ ... } : { # This is for hosting on bosco
  services.cgit = {
    bosco-git = {
      enable = true;
      nginx.location = "/git/";
      nginx.virtualHost = "git.myrmexia.xyz";
      repos = {
        nixos-flake = {
          desc = "A public repo for viewing my nixos config.";
          path = "/srv/git/.flake.git";
        };
      };
    };
  };
}