nixos/kmonad: make type of delay more strict

This commit is contained in:
Lin Jian
2025-01-01 10:33:40 +08:00
parent 23768e2a12
commit 657ff03cc3
+1 -1
View File
@@ -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.";
};