21 lines
304 B
Nix
21 lines
304 B
Nix
|
|
{
|
||
|
|
flake.nixosModules.flameshot = {
|
||
|
|
services.flameshot = {
|
||
|
|
enable = true;
|
||
|
|
General = {
|
||
|
|
showStartupLaunchMessage = false;
|
||
|
|
useGrimAdapter = true;
|
||
|
|
disabledGrimWarning = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
environment.systemPackages = [
|
||
|
|
flameshot
|
||
|
|
grim
|
||
|
|
slurp
|
||
|
|
satty
|
||
|
|
];
|
||
|
|
}
|