21 lines
316 B
Nix
21 lines
316 B
Nix
{
|
|
flake.nixosModules.flameshot = {
|
|
services.flameshot = {
|
|
enable = true;
|
|
General = {
|
|
showStartupLaunchMessage = false;
|
|
useGrimAdapter = true;
|
|
disabledGrimWarning = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
|
|
environment.systemPackages = [
|
|
flameshot
|
|
grim
|
|
slurp
|
|
satty
|
|
wl-copy
|
|
];
|
|
}
|