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

12 lines
180 B
Nix
Raw Normal View History

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