feat: init hectic-lab merge

This commit is contained in:
2026-02-27 19:57:44 +00:00
parent fa31b8ac06
commit 6928fa9969
13 changed files with 948 additions and 10 deletions
+26
View File
@@ -0,0 +1,26 @@
{
inputs,
flake,
self,
domain,
sslOpts,
...
}: let
port = 5869;
in {
hectic = {
services."sentinèlla".probe = {
enable = true;
inherit port;
};
};
services.nginx = {
virtualHosts."probe.${domain}" = sslOpts // {
forceSSL = true;
locations."/" = {
proxyPass = "http://127.0.0.1:${builtins.toString port}";
};
};
};
}