c3h-nixfiles/shared-services/spotifyd.nix

11 lines
200 B
Nix
Raw Normal View History

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