1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/flameshot/empty-settings.nix

14 lines
208 B
Nix
Raw Normal View History

2021-10-11 21:41:49 +02:00
{ ... }:
{
config = {
services.flameshot = { enable = true; };
test.stubs.flameshot = { };
nmt.script = ''
assertPathNotExists home-files/.config/flameshot/flameshot.ini
'';
};
}