2020-08-26 21:20:54 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
programs.ncmpcpp.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.ncmpcpp = { };
|
2020-08-26 21:20:54 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
assertPathNotExists home-files/.config/ncmpcpp/config
|
|
|
|
|
|
|
|
assertPathNotExists home-files/.config/ncmpcpp/bindings
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|