mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 13:23:11 +01:00
16 lines
244 B
Nix
16 lines
244 B
Nix
{ config, ... }:
|
|
{
|
|
services.flameshot = {
|
|
enable = true;
|
|
settings = {
|
|
General = {
|
|
contrastOpacity = 188;
|
|
disabledTrayIcon = true;
|
|
};
|
|
Shortcuts = {
|
|
TYPE_COPY = "Return";
|
|
};
|
|
};
|
|
};
|
|
}
|