nixos/modules/features/flameshot.nix
2026-06-18 18:41:34 -04:00

20 lines
304 B
Nix

{
flake.nixosModules.flameshot = {
services.flameshot = {
enable = true;
General = {
showStartupLaunchMessage = false;
useGrimAdapter = true;
disabledGrimWarning = true;
};
};
};
environment.systemPackages = [
flameshot
grim
slurp
satty
];
}