1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/ncmpcpp/ncmpcpp-empty-settings.nix

16 lines
257 B
Nix
Raw Normal View History

2020-08-26 21:20:54 +02:00
{ pkgs, ... }:
{
config = {
programs.ncmpcpp.enable = true;
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
'';
};
}