19 lines
269 B
Nix
19 lines
269 B
Nix
{
|
|
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;
|
|
};
|
|
};
|
|
}
|