30 lines
676 B
Nix
30 lines
676 B
Nix
{ pkgs, ... }@all: with all;
|
|
{
|
|
home = {
|
|
programs.spotify-player = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "default";
|
|
# border_type = "Rounded";
|
|
progress_bar_type = "Line";
|
|
playback_window_position = "Bottom";
|
|
play_icon = "";
|
|
pause_icon = "";
|
|
liked_icon = "";
|
|
copy_command = {
|
|
command = "wl-copy";
|
|
args = [ ];
|
|
};
|
|
# client_id = "65b708073fc0480ea92a077233ca87bd";
|
|
client_port = 8888;
|
|
ap_port = 443;
|
|
device = {
|
|
audio_cache = true;
|
|
normalization = true;
|
|
volume = 50;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|