forked from Yuka/c3h-nixfiles
10 lines
200 B
Nix
10 lines
200 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.spotifyd = {
|
|
enable = true;
|
|
settings.zeroconf_port = 18572;
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ config.services.spotifyd.settings.zeroconf_port ];
|
|
}
|