summaryrefslogtreecommitdiffstats
path: root/mpd.nix
diff options
context:
space:
mode:
authorAndrew <admonty1@protonmail.com>2025-08-24 02:54:56 -0400
committerAndrew <admonty1@protonmail.com>2025-08-24 02:54:56 -0400
commitd31d0d4c5bc458b87eb2ec231b506d206b70f83f (patch)
treef766019f062fddfca5e125923f6eddd2b4cf83d7 /mpd.nix
parentchange hyprlock to use default which is more asethetical in my opinion (diff)
downloadnixos-d31d0d4c5bc458b87eb2ec231b506d206b70f83f.tar.gz
nixos-d31d0d4c5bc458b87eb2ec231b506d206b70f83f.tar.bz2
nixos-d31d0d4c5bc458b87eb2ec231b506d206b70f83f.zip
fixed mpd bug where it would not resume playback upon skip
Diffstat (limited to '')
-rw-r--r--mpd.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/mpd.nix b/mpd.nix
index 176600e..6ded434 100644
--- a/mpd.nix
+++ b/mpd.nix
@@ -6,6 +6,10 @@
playlistDirectory = "${config.home.homeDirectory}/.playlists";
extraConfig = ''
auto_update "yes"
+ audio_output {
+ type "pulse"
+ name "PipeWire Output"
+ }
'';
};
}