nixos/hqplayerd: also open controller port

launchpad/nixpkgs/master
Bernardo Meurer 3 years ago
parent 7c122d687b
commit b43049dbd7
No known key found for this signature in database
GPG Key ID: F4C0D53B8D14C246
  1. 4
      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 ];

Loading…
Cancel
Save