NixOSDots/modules/common/spotify.nix
2025-12-13 12:09:52 +01:00

15 lines
303 B
Nix

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