nix/module/Keyboard.nix

19 lines
269 B
Nix
Raw Normal View History

2024-11-04 04:37:29 +03:00
{
config,
lib,
...
}: let
cfg = config.module.keyboard;
in {
options.module.keyboard = {
layouts = lib.mkOption {
default = "us,ru";
type = lib.types.str;
};
options = lib.mkOption {
default = "grp:toggle";
type = lib.types.str;
};
};
}