1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

nixos/unclutter: fix old typo

This commit is contained in:
rnhmjoj 2020-01-19 10:09:12 +01:00
parent 40bef249f1
commit bac3e6841b
No known key found for this signature in database
GPG key ID: BFBAF4C975F76450

View file

@ -32,7 +32,7 @@ in {
default = 1; default = 1;
}; };
threeshold = mkOption { threshold = mkOption {
description = "Minimum number of pixels considered cursor movement"; description = "Minimum number of pixels considered cursor movement";
type = types.int; type = types.int;
default = 1; default = 1;
@ -72,6 +72,11 @@ in {
}; };
}; };
imports = [
(mkRenamedOptionModule [ "services" "unclutter" "threeshold" ]
[ "services" "unclutter" "threshold" ])
];
meta.maintainers = with lib.maintainers; [ rnhmjoj ]; meta.maintainers = with lib.maintainers; [ rnhmjoj ];
} }