From 301e4761a2db7980edf20fbb6b933665eaf190a7 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Sat, 5 Aug 2023 18:12:52 +0530 Subject: [PATCH] reconfigure spotifyd --- home/services/spotifyd.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/home/services/spotifyd.nix b/home/services/spotifyd.nix index a330e1b..150a0c4 100644 --- a/home/services/spotifyd.nix +++ b/home/services/spotifyd.nix @@ -1,4 +1,8 @@ -{pkgs, secrets, ...}: { +{ + pkgs, + secrets, + ... +}: { services = { spotifyd = { enable = true; @@ -15,6 +19,9 @@ backend = "pulseaudio"; no_audio_cache = true; dbus_type = "session"; + volume_normalization = true; + autoplay = true; + bitrate = 320; }; }; };