mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2025-10-10 00:31:54 +05:30
20 lines
442 B
Nix
20 lines
442 B
Nix
{
|
|
programs.spotify-player = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "default";
|
|
client_id = "c54c06bacd3642c68d981474dadd3a53";
|
|
login_redirect_uri = "http://127.0.0.1:8989/login";
|
|
device = {
|
|
name = "spotify-player";
|
|
device_type = "speaker";
|
|
volume = 100;
|
|
bitrate = 320;
|
|
audio_cache = false;
|
|
normalization = false;
|
|
autoplay = false;
|
|
};
|
|
};
|
|
};
|
|
}
|