diff options
-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 618b50353..7bde39c3a 100644 --- a/krebs/5pkgs/simple/flameshot-once/profile.nix +++ b/krebs/5pkgs/simple/flameshot-once/profile.nix @@ -128,6 +128,10 @@ let default = false; type = types.bool; }; + showStartupLaunchMessage = mkOption { + default = false; + type = types.bool; + }; timeout = mkOption { default = 200; description = '' @@ -181,6 +185,7 @@ let showDesktopNotification = cfg.showDesktopNotification; showHelp = cfg.showHelp; showSidePanelButton = cfg.showSidePanelButton; + showStartupLaunchMessage = cfg.showStartupLaunchMessage; }; Shortcuts = { TYPE_COPY = "Return"; |