All checks were successful
Flake check / flake-check (pull_request) Successful in 18s
18 lines
321 B
Nix
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;
|
|
};
|
|
};
|
|
}
|