summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/x11/unclutter.nix
diff options
context:
space:
mode:
authorrnhmjoj <rnhmjoj@inventati.org>2020-01-19 10:09:12 +0100
committerrnhmjoj <rnhmjoj@inventati.org>2020-01-19 10:09:12 +0100
commitbac3e6841bcc5a260d35edfbe4591f255c0827c6 (patch)
treecbe785a415e19d4cc1d2f27e66e1379d35a362a6 /nixos/modules/services/x11/unclutter.nix
parent40bef249f19c14a0cb20361a30d896e9c875d4d7 (diff)
nixos/unclutter: fix old typo
Diffstat (limited to 'nixos/modules/services/x11/unclutter.nix')
-rw-r--r--nixos/modules/services/x11/unclutter.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/nixos/modules/services/x11/unclutter.nix b/nixos/modules/services/x11/unclutter.nix
index 2478aaabb799..c0868604a688 100644
--- a/nixos/modules/services/x11/unclutter.nix
+++ b/nixos/modules/services/x11/unclutter.nix
@@ -32,7 +32,7 @@ in {
default = 1;
};
- threeshold = mkOption {
+ threshold = mkOption {
description = "Minimum number of pixels considered cursor movement";
type = types.int;
default = 1;
@@ -72,6 +72,11 @@ in {
};
};
+ imports = [
+ (mkRenamedOptionModule [ "services" "unclutter" "threeshold" ]
+ [ "services" "unclutter" "threshold" ])
+ ];
+
meta.maintainers = with lib.maintainers; [ rnhmjoj ];
}