feat: {install,configure,import} keyd module

This commit is contained in:
Ahwx 2026-06-21 16:01:08 +02:00
parent a75e9e02a8
commit ddd38a4810
3 changed files with 17 additions and 0 deletions

14
modules/services/keyd.nix Normal file
View file

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