mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
15 lines
309 B
Nix
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 ];
|
|
}
|