19 lines
345 B
Nix
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
|
|
'';
|
|
};
|
|
|
|
}
|