nixos-config/config/programs/mpd.nix

20 lines
436 B
Nix
Raw Normal View History

2022-06-12 15:42:42 +00:00
_: {
2022-01-18 20:11:14 +00:00
services.mpd = {
enable = true;
2022-11-03 19:06:22 +00:00
musicDirectory = "/home/darkkirb/Music";
extraConfig = ''
audio_output {
type "pipewire"
name "Pipewire"
}
2023-01-07 13:26:33 +00:00
replaygain "track"
2023-12-11 10:32:46 +00:00
replaygain_preamp "-10"
2023-07-16 05:46:35 +00:00
max_playlist_length "1048576"
max_command_list_size "1048576"
max_output_buffer_size "1048576"
auto_update "yes"
2022-11-03 19:06:22 +00:00
'';
2022-01-18 20:11:14 +00:00
};
programs.ncmpcpp.enable = true;
}