new_nix/hosts/common/optional/spotify.nix
2025-03-29 13:48:46 +01:00

9 lines
178 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
spotifyd
spotify-player
ncspot
];
# Local Discovery
networking.firewall.allowedTCPPorts = [57621];
}