mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 12:45:27 +03:00
nixos/kmonad: make type of delay more strict
This commit is contained in:
parent
23768e2a12
commit
657ff03cc3
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
delay = lib.mkOption {
|
delay = lib.mkOption {
|
||||||
type = lib.types.int;
|
type = lib.types.ints.unsigned;
|
||||||
default = 5;
|
default = 5;
|
||||||
description = "The delay (in milliseconds) between compose key sequences.";
|
description = "The delay (in milliseconds) between compose key sequences.";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue