Files
dotfiles/home-modules/spotify.nix
Lennart J. Kurzweg (Nx2) aa6962cb0d twitch oauth chatterino
2025-09-30 00:02:32 +02:00

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;
};
};
};
};
}