nixos/modules/features/flameshot.nix

20 lines
345 B
Nix
Raw Permalink 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
2026-06-18 18:58:50 -04:00
wl-clipboard
2026-06-18 18:50:40 -04:00
];
2026-06-18 18:58:50 -04:00
environment.etc."xdg/flameshot/flameshot.ini".text = ''
[General]
contrastOpacity=188
startupLaunch=true
useGrimAdapter=true
'';
2026-06-18 18:41:34 -04:00
};
}