overleaf: init
All checks were successful
Flake check / flake-check (pull_request) Successful in 18s

This commit is contained in:
sid 2026-05-17 17:55:00 +02:00
parent dab1a39866
commit f64ee1322f
7 changed files with 290 additions and 0 deletions

View file

@ -0,0 +1,18 @@
{ 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;
};
};
}