twitch oauth chatterino

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-09-30 00:02:32 +02:00
parent 9b999bae90
commit aa6962cb0d
2 changed files with 29 additions and 0 deletions

Binary file not shown.

29
home-modules/spotify.nix Normal file
View File

@@ -0,0 +1,29 @@
{ 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;
};
};
};
};
}