mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-07-16 22:21:55 +08:00
14 lines
244 B
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";
|
|
};
|
|
};
|
|
};
|
|
}
|