diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2024-06-07 17:51:29 -0600 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2024-06-07 17:51:29 -0600 |
| commit | c88f73b883f8bb0df01e537b6f1375c5144bbe18 (patch) | |
| tree | a55f7f95eb5588ab61d0e6cd7f293d1f3c2d5d83 /modules | |
| parent | d8fd1cad0093e8ccd74cc09840d1993ce85ff57b (diff) | |
| parent | c180d641c27bc940592f8982100ca9838c2282cd (diff) | |
Merge branch 'master' of ssh://bosco:/srv/git/.flake
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/nixos/cgit.nix | 5 | ||||
| -rw-r--r-- | modules/nixos/environment.nix | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/modules/nixos/cgit.nix b/modules/nixos/cgit.nix index 177158a..a5b4013 100644 --- a/modules/nixos/cgit.nix +++ b/modules/nixos/cgit.nix @@ -1,12 +1,13 @@ -{ config, ... } : { # This is for hosting on bosco +{ config, pkgs, ... } : { # This is for hosting on bosco services.cgit = { "git.myrmexia.xyz" = { enable = true; - nginx.location = "/git/"; + nginx.location = "/"; # nginx.virtualHost = "git.myrmexia.xyz"; settings = { enable-commit-graph = 1; enable-http-clone = 0; + source-filter = "${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.py"; }; repos = { nixos-flake = { diff --git a/modules/nixos/environment.nix b/modules/nixos/environment.nix index 52aaae9..4fdd495 100644 --- a/modules/nixos/environment.nix +++ b/modules/nixos/environment.nix @@ -7,7 +7,6 @@ sessionVariables = { NIXOS_OZONE_WL = "1"; NIXPKGS_ALLOW_INSECURE = "1"; - RADV_PERFTEST = "rt"; }; variables = { # PATH = "/home/defin/.local/share/gem/ruby/3.0.0/bin:"; |
