nixos/kmonad: make type of delay more strict

This commit is contained in:
Lin Jian 2025-01-01 06:49:34 +08:00
parent 23768e2a12
commit 657ff03cc3
No known key found for this signature in database
GPG key ID: A6698D36434F75A5

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.";
};