NixOSDots/modules/common/spotify.nix
2025-12-26 21:44:15 +01:00

15 lines
309 B
Nix

{ pkgs, inputs, ... }:
{
# Installs Spotify and Spicetify (import this module in configuration.nix)
environment.systemPackages = with pkgs; [
spotify
];
# Local discovery
networking.firewall.allowedTCPPorts = [ 57621 ];
# Spotify Connect
networking.firewall.allowedUDPPorts = [ 5353 ];
}