Spotify: Difference between revisions

From NixOS Wiki
imported>PatrickMalolepszy
Add details on how to install the actual spotify app, not just spotify deamon.
improve formatting
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
== Spotify ==
{{Unfree}}
[https://spotify.com Spotify] is a commercial music streaming service.


{{note|Spotify is [[FAQ/unfree|unfree]], its license prohibits distribution. See the [[FAQ/unfree]] page to install unfree software.}}
== Installation ==
 
=== Installation ===


To install the standard Spotify desktop application, add to system packages:
To install the standard Spotify desktop application, add to system packages:
Line 11: Line 10:
   ];
   ];


=== 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:
<syntaxhighlight lang=nix>
<syntaxhighlight lang=nix>
networking.firewall.allowedTCPPorts = [ 57621 ];</syntaxhighlight>
networking.firewall.allowedTCPPorts = [ 57621 ];</syntaxhighlight>


=== spotifyd ===
In order to enable discovery of Google Cast devices (and possibly other Spotify Connect devices) in the same network by the Spotify app, you need to open UDP port 5353 by adding the following line to your configuration.nix:
<syntaxhighlight lang=nix>
networking.firewall.allowedUDPPorts = [ 5353 ];</syntaxhighlight>
 
== Spotifyd ==
The alternative client [https://github.com/Spotifyd/spotifyd spotifyd] is available as a package, [https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/audio/spotifyd.nix nixos module], and [https://github.com/nix-community/home-manager/blob/master/modules/services/spotifyd.nix home-manager module].
The alternative client [https://github.com/Spotifyd/spotifyd spotifyd] is available as a package, [https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/audio/spotifyd.nix nixos module], and [https://github.com/nix-community/home-manager/blob/master/modules/services/spotifyd.nix home-manager module].


Line 38: Line 41:


spotifyd connects to spotify as a spotify-connect device. It offers no controls of its own, but can be controlled via [https://github.com/altdesktop/playerctl playerctl]  or [https://github.com/Rigellute/spotify-tui spotify-tui].
spotifyd connects to spotify as a spotify-connect device. It offers no controls of its own, but can be controlled via [https://github.com/altdesktop/playerctl playerctl]  or [https://github.com/Rigellute/spotify-tui spotify-tui].
=== Troubleshooting ===
If you get: <code>libcurl-gnutls.so.4: no version information</code>, clear your Spotify cache: <code>rm -rf ~/.cache/spotify</code>
[[Category:Applications]]

Latest revision as of 10:33, 23 June 2024

Note: This package is unfree and requires extra steps to install.

Spotify is a commercial music streaming service.

Installation

To install the standard Spotify desktop application, add to system packages:

 environment.systemPackages = with pkgs; [
   spotify
 ];

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 ];

In order to enable discovery of Google Cast devices (and possibly other Spotify Connect devices) in the same network by the Spotify app, you need to open UDP port 5353 by adding the following line to your configuration.nix:

networking.firewall.allowedUDPPorts = [ 5353 ];

Spotifyd

The alternative client spotifyd is available as a package, nixos module, and home-manager module.

spotifyd must have your credentials when it starts, otherwise it will not be able to authenticate with Spotify, and will not show up as a device. If installing spotifyd as a package, give it credentials when starting, e.g.:

spotifyd --username <USER> --password <PASS>

If installing spotifyd as a systemd service via home-manager, you can supply your credentials via options. Example home-manager config:

 services.spotifyd = {
   enable = true;
   settings =
     {
       global = {
         username = "Alex";
         password = "foo";
       };
     }
   ;
 }

spotifyd connects to spotify as a spotify-connect device. It offers no controls of its own, but can be controlled via playerctl or spotify-tui.

Troubleshooting

If you get: libcurl-gnutls.so.4: no version information, clear your Spotify cache: rm -rf ~/.cache/spotify