mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
feat(bomba): add homebox
This commit is contained in:
@@ -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}
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{ ... }:
|
||||
{
|
||||
services.homebox = {
|
||||
enable = true;
|
||||
settings = {
|
||||
HBOX_WEB_PORT = "8016";
|
||||
HBOX_OPTIONS_ALLOW_REGISTRATION = "false";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user