c3h-nixfiles/hosts/nuc/spotifyd.nix

13 lines
166 B
Nix
Raw Normal View History

2021-08-21 16:47:21 +00:00
{ ... }:
{
services.spotifyd = {
enable = true;
config = ''
zeroconf_port = 18572
'';
};
networking.firewall.allowedTCPPorts = [ 18572 ];
}