fix: mpd still has issues but less than before

This commit is contained in:
Ahwx 2025-07-07 23:20:43 +02:00
parent 243787b2bd
commit 35db81ac4d

View file

@ -7,7 +7,7 @@
{ {
services.mpd = { services.mpd = {
enable = true; enable = true;
musicDirectory = "/dandelion/home/liv/music"; musicDirectory = "/home/liv/Music";
extraConfig = '' extraConfig = ''
audio_output { audio_output {
type "pipewire" type "pipewire"
@ -18,14 +18,14 @@
# Optional: # Optional:
# network.listenAddress = "any"; # if you want to allow non-localhost connections # network.listenAddress = "any"; # if you want to allow non-localhost connections
network.startWhenNeeded = false; # systemd feature: only start MPD service upon connection to its socket
}; };
systemd.services.mpd.environment = { systemd.services.mpd.environment = {
# see: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/609 # see: https://gitlab.freedesktop.org/pipewire/pipewire/-/issues/609
XDG_RUNTIME_DIR = "/run/user/${toString config.users.users.userRunningPipeWire.uid}"; # User-id must match above user. MPD will look inside this directory for the PipeWire socket. XDG_RUNTIME_DIR = "/run/user/${toString config.users.users.${username}.uid}"; # User-id must match above user. MPD will look inside this directory for the PipeWire socket.
}; };
home.packages = with pkgs; [ environment.systemPackages = with pkgs; [
mpdris2 mpdris2
ncmpcpp
]; ];
} }