nixos/modules/features/flameshot.nix

22 lines
356 B
Nix
Raw Normal View History

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