spotify-player: use own Spotify client ID

This commit is contained in:
rope 2026-07-31 15:31:26 +01:00
parent 3fbc9f884b
commit 7b830f212c

View file

@ -57,7 +57,16 @@ in
# default on Linux, so only the off-by-default visualiser needs setting.
programs.spotify-player = lib.mkIf isDesktop {
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.