Spotify: Difference between revisions
Sentence explaining Spotify added. Category:Application |
No edit summary |
||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
{{tip/unfree}} | |||
[https://spotify.com Spotify] is a commercial music streaming service. | |||
== Installation == | |||
To install the standard Spotify desktop application, add to system packages: | To install the standard Spotify desktop application, add to system packages: | ||
Line 13: | Line 11: | ||
]; | ]; | ||
== 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> | ||
Line 22: | Line 20: | ||
networking.firewall.allowedUDPPorts = [ 5353 ];</syntaxhighlight> | 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 45: | Line 43: | ||
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]. | ||
[[Category: | === 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]] |