mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
31 lines
544 B
Nix
31 lines
544 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
config = {
|
||
|
services.flameshot = {
|
||
|
enable = true;
|
||
|
|
||
|
settings = {
|
||
|
General = {
|
||
|
disabledTrayIcon = true;
|
||
|
showStartupLaunchMessage = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
test.stubs.flameshot = { };
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/flameshot/flameshot.ini \
|
||
|
${
|
||
|
builtins.toFile "expected.ini" ''
|
||
|
[General]
|
||
|
disabledTrayIcon=true
|
||
|
showStartupLaunchMessage=false
|
||
|
''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|