sid.ovh/hosts/rx4/services/overleaf-oci.nix
sid f64ee1322f
All checks were successful
Flake check / flake-check (pull_request) Successful in 18s
overleaf: init
2026-05-17 17:55:00 +02:00

18 lines
321 B
Nix

{ outputs, constants, ... }:
let
inherit (constants.services.overleaf-oci) port subdomain;
in
{
imports = [ outputs.nixosModules.overleaf-oci ];
services.overleaf-oci = {
enable = true;
inherit port;
reverseProxy = {
enable = true;
inherit subdomain;
forceSSL = false;
};
};
}