nix/option/Keyboard.nix

15 lines
262 B
Nix
Raw Normal View History

2024-11-16 04:43:59 +03:00
# Keyboard configuration.
{ lib, ... }:
2024-11-04 04:37:29 +03:00
{
options.module.keyboard = {
layouts = lib.mkOption {
default = "us,ru";
type = lib.types.str;
};
options = lib.mkOption {
default = "grp:toggle";
type = lib.types.str;
};
};
2024-11-04 04:37:29 +03:00
}