diff --git a/nixos/modules/services/audio/hqplayerd.nix b/nixos/modules/services/audio/hqplayerd.nix index 3da3635eb98b..64a6436e6706 100644 --- a/nixos/modules/services/audio/hqplayerd.nix +++ b/nixos/modules/services/audio/hqplayerd.nix @@ -53,7 +53,7 @@ in type = types.bool; default = false; description = '' - Open TCP port 8088 in the firewall for the server. + Opens ports needed for the WebUI and controller API. ''; }; }; @@ -77,7 +77,7 @@ in }; networking.firewall = mkIf cfg.openFirewall { - allowedTCPPorts = [ 8088 ]; + allowedTCPPorts = [ 8088 4321 ]; }; services.udev.packages = [ pkg ];