From 657ff03cc341d2de5afa0b99c55c75e7f64b85e2 Mon Sep 17 00:00:00 2001 From: Lin Jian Date: Wed, 1 Jan 2025 06:49:34 +0800 Subject: [PATCH] nixos/kmonad: make type of delay more strict --- nixos/modules/services/hardware/kmonad.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/hardware/kmonad.nix b/nixos/modules/services/hardware/kmonad.nix index 8fa721a5f233..197a4752ed16 100644 --- a/nixos/modules/services/hardware/kmonad.nix +++ b/nixos/modules/services/hardware/kmonad.nix @@ -56,7 +56,7 @@ let }; delay = lib.mkOption { - type = lib.types.int; + type = lib.types.ints.unsigned; default = 5; description = "The delay (in milliseconds) between compose key sequences."; };