13 lines
166 B
Nix
13 lines
166 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
services.spotifyd = {
|
||
|
enable = true;
|
||
|
config = ''
|
||
|
zeroconf_port = 18572
|
||
|
'';
|
||
|
};
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 18572 ];
|
||
|
}
|