c3h-nixfiles/hosts/nuc/spotifyd.nix
2021-08-21 18:57:02 +02:00

12 lines
166 B
Nix

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