Skip to content

Commit

Permalink
keyd: Map Capslock+hjkl to arrow keys
Browse files Browse the repository at this point in the history
  • Loading branch information
juanibiapina committed Dec 1, 2024
1 parent 9e5bee1 commit 86a5e10
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion nix/modules/keyd.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@
enable = true;
keyboards.default.settings = {
main = {
capslock = "overload(control, esc)";
capslock = "overload(capslock, esc)";
leftalt = "leftmeta";
leftmeta = "leftalt";
};

"capslock:C" = {
h = "left";
j = "down";
k = "up";
l = "right";
};
};
};
}

0 comments on commit 86a5e10

Please sign in to comment.