summaryrefslogtreecommitdiffstats
path: root/nixos/modules
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-02-14 01:28:03 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2020-02-14 01:28:03 +0100
commitf01bcccd25adf7d151979036b238d3c409374c5d (patch)
tree6cd4f5104a2ab249987ea06c1ee19c7fb290a011 /nixos/modules
parentc1741fc12a3329cf4c4509f22c60dfd4d54a192f (diff)
nixos/unclutter: fix remaining typo
Diffstat (limited to 'nixos/modules')
-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} \