diff options
author | jeschli <jeschli@gmail.com> | 2019-04-28 15:05:34 +0200 |
---|---|---|
committer | jeschli <jeschli@gmail.com> | 2019-04-28 15:05:34 +0200 |
commit | e45b3492b3961685936378a160adb225789e51d9 (patch) | |
tree | cc0480e485ab78d1f52f80ec36987b9a57e925f7 /krebs/5pkgs/simple/flameshot-once/profile.nix | |
parent | 97d4f9a771a9bbb1b45085569028db2d7dfbd610 (diff) | |
parent | 915e4b843790d3e71bdccea124d4832ca042e456 (diff) |
Merge branch 'master' of prism.r:stockholm
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once/profile.nix')
-rw-r--r-- | krebs/5pkgs/simple/flameshot-once/profile.nix | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/krebs/5pkgs/simple/flameshot-once/profile.nix b/krebs/5pkgs/simple/flameshot-once/profile.nix index 7373da00a..8ea8a850c 100644 --- a/krebs/5pkgs/simple/flameshot-once/profile.nix +++ b/krebs/5pkgs/simple/flameshot-once/profile.nix @@ -29,7 +29,7 @@ let eval = evalModules { modules = singleton { - _file = toString ./config.nix; + _file = toString ./profile.nix; imports = singleton config; options = { buttons = mkOption { @@ -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} '' |