Ahwxorg/modules/services/keyd.nix
2026-06-28 11:14:47 +02:00

19 lines
325 B
Nix

{
services.keyd = {
enable = true;
keyboards.default.settings = {
main.capslock = "overload(control, esc)";
control = {
h = "left";
j = "down";
k = "up";
l = "right";
};
meta = {
k = "C-k";
j = "C-j";
l = "C-l";
};
};
};
}