Spotify: Difference between revisions

From NixOS Wiki
imported>Hyperfekt
add local discovery port instruction
 
imported>Fadenb
mNo edit summary
Line 5: Line 5:
=== Local discovery ===
=== Local discovery ===
To sync local tracks from your filesystem with mobile devices in the same network, you need to open port 57621 by adding the following line to your configuration.nix:
To sync local tracks from your filesystem with mobile devices in the same network, you need to open port 57621 by adding the following line to your configuration.nix:
<code>networking.firewall.allowedTCPPorts = [ 57621 ];</code>
<syntaxhighlight lang=nix>
networking.firewall.allowedTCPPorts = [ 57621 ];</syntaxhighlight>

Revision as of 16:10, 24 January 2019

Spotify

Note: Spotify is unfree, its license prohibits distribution. See the FAQ/unfree page to install unfree software.

Local discovery

To sync local tracks from your filesystem with mobile devices in the same network, you need to open port 57621 by adding the following line to your configuration.nix:

networking.firewall.allowedTCPPorts = [ 57621 ];