diff options
author | lassulus <lassulus@lassul.us> | 2019-04-28 14:18:00 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2019-04-28 14:18:00 +0200 |
commit | 915e4b843790d3e71bdccea124d4832ca042e456 (patch) | |
tree | a375c5be89afe8ff04ffa4f1e45c8bcd388590af /krebs/5pkgs/simple/flameshot-once | |
parent | 710609af31b72abf805370f3fe322daa41c1a55b (diff) | |
parent | 73e89ece549bad03d97326cc94e9ba59a762d298 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/simple/flameshot-once')
-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} '' |