2023-01-07 11:59:51 +01:00
|
|
|
{
|
2025-01-31 21:24:47 +01:00
|
|
|
# Minimal config reproducing
|
|
|
|
# https://github.com/nix-community/home-manager/issues/3560
|
|
|
|
programs.ncmpcpp.enable = true;
|
2023-01-07 11:59:51 +01:00
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
services.mpd.enable = true;
|
|
|
|
services.mpd.musicDirectory = "~/music";
|
2023-01-07 11:59:51 +01:00
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
nmt.script = ''
|
|
|
|
assertFileContent \
|
|
|
|
home-files/.config/ncmpcpp/config \
|
|
|
|
${./ncmpcpp-issue-3560-expected-config}
|
2023-01-07 11:59:51 +01:00
|
|
|
|
2025-01-31 21:24:47 +01:00
|
|
|
assertPathNotExists home-files/.config/ncmpcpp/bindings
|
|
|
|
'';
|
2023-01-07 11:59:51 +01:00
|
|
|
}
|