about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichele Guerini Rocco <rnhmjoj@users.noreply.github.com>2020-02-14 09:38:45 +0100
committerGitHub <noreply@github.com>2020-02-14 09:38:45 +0100
commitae55174fa9cac34f0ee3a95b2e9663e9765c5e8d (patch)
tree28c0d594d8c075668e8d57fe6a33094f72262575
parent8979d2dde534eb7d8f979c4b8283697a789f5b0a (diff)
parentf01bcccd25adf7d151979036b238d3c409374c5d (diff)
downloadnixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar.gz
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar.bz2
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar.lz
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar.xz
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.tar.zst
nixlib-ae55174fa9cac34f0ee3a95b2e9663e9765c5e8d.zip
Merge pull request #80077 from rnhmjoj/unclutter
nixos/unclutter: fix remaining typo
-rw-r--r--nixos/modules/services/x11/unclutter.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/unclutter.nix b/nixos/modules/services/x11/unclutter.nix
index c0868604a688..56e30c79d1f1 100644
--- a/nixos/modules/services/x11/unclutter.nix
+++ b/nixos/modules/services/x11/unclutter.nix
@@ -61,7 +61,7 @@ in {
       serviceConfig.ExecStart = ''
         ${cfg.package}/bin/unclutter \
           -idle ${toString cfg.timeout} \
-          -jitter ${toString (cfg.threeshold - 1)} \
+          -jitter ${toString (cfg.threshold - 1)} \
           ${optionalString cfg.keystroke "-keystroke"} \
           ${concatMapStrings (x: " -"+x) cfg.extraOptions} \
           -not ${concatStringsSep " " cfg.excluded} \