nixos-config/users/rouven/modules/flameshot/default.nix
2023-01-01 17:31:22 +01:00

16 lines
244 B
Nix

{ config, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
contrastOpacity = 188;
disabledTrayIcon = true;
};
Shortcuts = {
TYPE_COPY = "Return";
};
};
};
}