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