mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
21 lines
349 B
Nix
21 lines
349 B
Nix
{ pkgs, inputs, ... }:
|
|
|
|
{
|
|
# Installs Spotify and Spicetify (import this module in configuration.nix)
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
spotify
|
|
];
|
|
};
|
|
|
|
|
|
networking = {
|
|
firewall = {
|
|
# Local discovery
|
|
allowedTCPPorts = [ 57621 ];
|
|
# Spotify Connect
|
|
allowedUDPPorts = [ 5353 ];
|
|
};
|
|
};
|
|
}
|