diff options
Diffstat (limited to 'nixos/hosts/tente/git.nix')
-rw-r--r-- | nixos/hosts/tente/git.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/hosts/tente/git.nix b/nixos/hosts/tente/git.nix index 0e005c7..912abab 100644 --- a/nixos/hosts/tente/git.nix +++ b/nixos/hosts/tente/git.nix @@ -2,6 +2,7 @@ let cfg = config.git; + helpers = import <top/helpers.nix>; in { options.git = { @@ -30,6 +31,7 @@ in nginx.virtualHosts.${cfg.webUiDomain} = { enableACME = true; forceSSL = true; + extraConfig = helpers.mkNginxConfig cfg.webUiDomain; }; cgit.main = { |