nixos-config/config/programs/mpd.nix

20 lines
436 B
Nix
Raw Normal View History

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