mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-07-16 22:21:55 +08:00
feat: {install,configure,import} keyd module
This commit is contained in:
parent
a75e9e02a8
commit
ddd38a4810
3 changed files with 17 additions and 0 deletions
14
modules/services/keyd.nix
Normal file
14
modules/services/keyd.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue