mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
14 lines
208 B
Nix
14 lines
208 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.flameshot = { enable = true; };
|
||
|
|
||
|
test.stubs.flameshot = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertPathNotExists home-files/.config/flameshot/flameshot.ini
|
||
|
'';
|
||
|
};
|
||
|
}
|