c3h-nixfiles/shared-services/spotifyd.nix
Your Name a52133cec4 wip
2021-10-22 22:58:56 +02:00

12 lines
166 B
Nix

{ ... }:
{
services.spotifyd = {
enable = true;
config = ''
zeroconf_port = 18572
'';
};
networking.firewall.allowedTCPPorts = [ 18572 ];
}