nixos-config/users/rouven/modules/flameshot/default.nix

16 lines
244 B
Nix
Raw Normal View History

2023-01-01 17:20:23 +01:00
{ config, ... }:
{
services.flameshot = {
enable = true;
settings = {
General = {
contrastOpacity = 188;
2023-01-01 17:31:22 +01:00
disabledTrayIcon = true;
2023-01-01 17:20:23 +01:00
};
Shortcuts = {
TYPE_COPY = "Return";
};
};
};
}