actually fix mpd

This commit is contained in:
Sakooooo 2023-07-04 23:44:35 +03:00
parent 3460b249ac
commit dcf6bb18c7
Signed by: sako
GPG key ID: 3FD715D87D7725E0
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,4 @@
audio_output { audio_output {
type "pipewire" type "pipewire"
name "My PipeWire Output" name "My PipeWire Output"
server "127.0.0.1"
} }

View file

@ -171,6 +171,7 @@
# TODO(sako):: replace this with mopidy for jellyifn support # TODO(sako):: replace this with mopidy for jellyifn support
services.mpd = { services.mpd = {
# pipewire fix
user = "sako"; user = "sako";
enable = true; enable = true;
musicDirectory = "/home/sako/music"; musicDirectory = "/home/sako/music";
@ -178,6 +179,11 @@
startWhenNeeded = true; startWhenNeeded = true;
}; };
# mpd fix
systemd.services.mpd.environment = {
XDG_RUNTIME_DIR = "/run/user/1000";
};
# garbage collection # garbage collection
nix.gc = { nix.gc = {
automatic = true; automatic = true;