diff --git a/git-crypt/secrets.nix b/git-crypt/secrets.nix index ef17bb3..63bb135 100644 Binary files a/git-crypt/secrets.nix and b/git-crypt/secrets.nix differ diff --git a/home-modules/spotify.nix b/home-modules/spotify.nix new file mode 100644 index 0000000..09fb1ca --- /dev/null +++ b/home-modules/spotify.nix @@ -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; + }; + }; + }; + }; +}