spotify-player: use own Spotify client ID
This commit is contained in:
parent
3fbc9f884b
commit
7b830f212c
1 changed files with 10 additions and 1 deletions
|
|
@ -57,7 +57,16 @@ in
|
||||||
# default on Linux, so only the off-by-default visualiser needs setting.
|
# default on Linux, so only the off-by-default visualiser needs setting.
|
||||||
programs.spotify-player = lib.mkIf isDesktop {
|
programs.spotify-player = lib.mkIf isDesktop {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.enable_audio_visualization = true;
|
settings = {
|
||||||
|
enable_audio_visualization = true;
|
||||||
|
# Our own Spotify app rather than the built-in default (ncspot's client
|
||||||
|
# ID, shared by every spotify-player/ncspot install). Spotify rate-limits
|
||||||
|
# per client ID, and exhausting the shared one surfaced here as
|
||||||
|
# "Token is not valid" and an endlessly loading library. Public PKCE
|
||||||
|
# client, no secret involved, so it's fine in the repo.
|
||||||
|
# Redirect URI registered: http://127.0.0.1:8989/login
|
||||||
|
client_id = "265506bc7bbd4032bf0fee708b321d3e";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Upstream ships no .desktop file (TUI only), so the launcher can't find it.
|
# Upstream ships no .desktop file (TUI only), so the launcher can't find it.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue