summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2019-04-23 13:22:50 +0200
committertv <tv@krebsco.de>2019-04-23 13:22:50 +0200
commit46172b7f016e53144a9be7fefd3cecdf54dd4bab (patch)
tree3f8e2d2b6d203b12c752b03286670e2f732646e8
parentd7ca88168c56caf2e64cc1091d24dbb73ffd5864 (diff)
flameshot-once: make timeout configurable
-rw-r--r--krebs/5pkgs/simple/flameshot-once/profile.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/profile.nix b/krebs/5pkgs/simple/flameshot-once/profile.nix
index c5dc5d85..8ea8a850 100644
--- a/krebs/5pkgs/simple/flameshot-once/profile.nix
+++ b/krebs/5pkgs/simple/flameshot-once/profile.nix
@@ -77,6 +77,14 @@ let
default = false;
type = types.bool;
};
+ timeout = mkOption {
+ default = 100;
+ description = ''
+ Maximum time in milliseconds allowed for the flameshot daemon to
+ react.
+ '';
+ type = types.positive;
+ };
};
};
};
@@ -125,5 +133,6 @@ in
pkgs.writeDash "flameshot.profile" ''
export FLAMESHOT_CAPTURE_PATH=${cfg.savePath}
+ export FLAMESHOT_ONCE_TIMEOUT=${toString cfg.timeout}
export XDG_CONFIG_HOME=${XDG_CONFIG_HOME}
''