home-manager/tests/modules/services/flameshot/empty-settings.nix
2021-10-11 21:47:05 +02:00

14 lines
208 B
Nix

{ ... }:
{
config = {
services.flameshot = { enable = true; };
test.stubs.flameshot = { };
nmt.script = ''
assertPathNotExists home-files/.config/flameshot/flameshot.ini
'';
};
}