nixos/modules/features/flameshot.nix
2026-06-18 18:58:50 -04:00

19 lines
345 B
Nix

{
flake.nixosModules.flameshot = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
flameshot
grim
slurp
satty
wl-clipboard
];
environment.etc."xdg/flameshot/flameshot.ini".text = ''
[General]
contrastOpacity=188
startupLaunch=true
useGrimAdapter=true
'';
};
}