c3h-nixfiles/shared-services/spotifyd.nix

12 lines
166 B
Nix

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