feat(bomba): add homebox

This commit is contained in:
2026-07-11 13:50:03 +02:00
parent f958e451f1
commit 9ad1698bb0
3 changed files with 15 additions and 1 deletions
+3
View File
@@ -80,6 +80,9 @@
"actual.patrickcanal.it".extraConfig = ''
reverse_proxy :${toString config.services.actual.settings.port}
'';
"inventory.patrickcanal.it".extraConfig = ''
reverse_proxy :${toString config.services.homebox.settings.HBOX_WEB_PORT}
'';
};
};
+2 -1
View File
@@ -1,9 +1,11 @@
{ ... }:
{
imports = [
./actual.nix
./caddy.nix
./fail2ban.nix
./gitea.nix
./homebox.nix
./navidrome.nix
./nextcloud.nix
./nixflix.nix
@@ -12,7 +14,6 @@
./vaultwarden.nix
./vikunja.nix
./yamtrack.nix
./actual.nix
];
services.openssh.enable = true;
+10
View File
@@ -0,0 +1,10 @@
{ ... }:
{
services.homebox = {
enable = true;
settings = {
HBOX_WEB_PORT = "8016";
HBOX_OPTIONS_ALLOW_REGISTRATION = "false";
};
};
}