diff options
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once')
-rw-r--r-- | krebs/5pkgs/simple/flameshot-once/profile.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/profile.nix b/krebs/5pkgs/simple/flameshot-once/profile.nix index 8b54f1bcd..618b50353 100644 --- a/krebs/5pkgs/simple/flameshot-once/profile.nix +++ b/krebs/5pkgs/simple/flameshot-once/profile.nix @@ -124,6 +124,10 @@ let default = false; type = types.bool; }; + showSidePanelButton = mkOption { + default = false; + type = types.bool; + }; timeout = mkOption { default = 200; description = '' @@ -176,6 +180,7 @@ let savePath = cfg.savePath; showDesktopNotification = cfg.showDesktopNotification; showHelp = cfg.showHelp; + showSidePanelButton = cfg.showSidePanelButton; }; Shortcuts = { TYPE_COPY = "Return"; |