summary refs log tree commit diff stats
path: root/hm/flameshot/default.nix
blob: f50af49a23b62ac3d2665407f40eac4fc8c707a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{...}: {
  services.flameshot = {
    enable = true;
    settings = {
      General = {
        disabledTrayIcon = true;
        contrastOpacity = 188;
        undoLimit = 98;
      };
    };
  };
}