1
0
Fork 0
nixos-config/home/mpd.nix

18 lines
383 B
Nix
Raw Normal View History

2020-05-05 23:40:57 +00:00
{ pkgs, config, ... }: {
services = {
mpd = {
enable = true;
network.listenAddress = "::1";
musicDirectory = "${config.home.homeDirectory}/media/audio";
extraConfig = ''
audio_output {
type "pulse"
name "Pulseaudio"
server "localhost"
}
'';
};
2020-05-11 21:53:38 +00:00
mpdris2 = { enable = true; };
2020-05-05 23:40:57 +00:00
};
}