diff --git a/hosts/nas/apps/arrs/default.nix b/hosts/nas/apps/arrs/default.nix index ebf0915..9f328b8 100755 --- a/hosts/nas/apps/arrs/default.nix +++ b/hosts/nas/apps/arrs/default.nix @@ -149,6 +149,7 @@ in cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port + 8080 ]; }; # Use systemd-resolved inside the container @@ -213,7 +214,7 @@ in sourcePort = cfg.sonarr.port; } { - destination = "${cfg.localAddress}:${toString cfg.sabnzbd.port}"; + destination = "${cfg.localAddress}:8080"; sourcePort = cfg.sabnzbd.port; } { @@ -227,8 +228,8 @@ in ]; }; firewall = { - allowedTCPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port cfg.deluge.port cfg.jackett.port ]; - allowedUDPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port cfg.deluge.port cfg.jackett.port ]; + allowedTCPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port 8080 cfg.deluge.port cfg.jackett.port ]; + allowedUDPPorts = [ cfg.radarr.port cfg.sonarr.port cfg.sabnzbd.port 8080 cfg.deluge.port cfg.jackett.port ]; }; }; };