lab-infra/machines/homebox01/homebox.nix
Constantin Gierczak--Galle e0a992d378
Some checks failed
lint / check (push) Successful in 24s
Check meta / check_meta (pull_request) Failing after 19s
lint / check (pull_request) Successful in 23s
build configuration / build_krz01 (pull_request) Failing after 1m26s
feat(homebox01): disable registration
2024-12-05 11:02:04 +01:00

14 lines
307 B
Nix

{
services.homebox = {
enable = true;
settings = {
HBOX_OPTIONS_ALLOW_REGISTRATION = "false";
};
};
services.nginx.virtualHosts."homebox.cgiga.fr" = {
enableACME = true;
forceSSL = true;
serverAliases = [ ];
locations."/".proxyPass = "http://localhost:7745/";
};
}