niksos/modules/services/mpd.nix

32 lines
686 B
Nix
Raw Normal View History

2023-09-08 16:10:15 +02:00
_: {
2023-10-03 19:22:24 +02:00
services = {
2023-09-08 16:10:15 +02:00
mpd = {
2023-10-03 19:22:24 +02:00
enable = true;
musicDirectory = "~/Music";
extraConfig = ''
audio_output {
type "pipewire"
name "PipeWire Sound Server"
}
follow_outside_symlinks "yes"
follow_inside_symlinks "yes"
'';
2023-09-08 16:10:15 +02:00
};
2023-10-03 19:22:24 +02:00
mpd-mpris = {
enable = true;
mpd = {
host = "127.0.0.1";
network = "unix";
port = 6600;
useLocal = true;
};
};
playerctld = {
enable = true;
};
2023-09-08 16:10:15 +02:00
};
}