nixos/modules/features/flameshot.nix

22 lines
316 B
Nix
Raw Normal View History

2026-06-18 18:41:34 -04:00
{
flake.nixosModules.flameshot = {
services.flameshot = {
enable = true;
General = {
showStartupLaunchMessage = false;
useGrimAdapter = true;
disabledGrimWarning = true;
};
};
};
environment.systemPackages = [
flameshot
grim
slurp
satty
2026-06-18 18:45:13 -04:00
wl-copy
2026-06-18 18:41:34 -04:00
];
}