MyNixOS website logo
option

services.evremap.settings.dual_role

List of dual-role remappings that output different key sequences based on whether the input key is held or tapped.

Declarations
Type
list of (submodule)
Default
[ ]
Example
[
  {
    hold = [
      "KEY_LEFTCTRL"
    ];
    input = "KEY_CAPSLOCK";
    tap = [
      "KEY_ESC"
    ];
  }
]