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

16 lines
242 B
Nix
Raw Normal View History

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