Ahwxorg/modules/services/keyd.nix

14 lines
244 B
Nix

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