NixOS-Config/modules/system/services/pc/keyd/default.nix

28 lines
522 B
Nix
Raw Normal View History

2024-10-18 20:26:32 -04:00
{ ... }:
{
services.keyd = {
enable = true;
keyboards.default = {
ids = [ "*" ];
settings = {
main = {
capslock = "overload(control,esc)";
esc = "capslock";
rightcontrol = "esc";
leftcontrol = "noop";
left = "noop";
down = "noop";
up = "noop";
right = "noop";
};
control = {
h = "left";
j = "down";
k = "up";
l = "right";
};
2024-10-18 20:26:32 -04:00
};
};
};
}