Init:start-nix

This commit is contained in:
dichgrem
2025-07-22 12:18:15 +08:00
parent 7ce7214a74
commit e57cdd246c
178 changed files with 22667 additions and 1 deletions

25
modules/services/keyd.nix Normal file
View File

@@ -0,0 +1,25 @@
_: {
services.keyd = {
enable = true;
keyboards = {
default = {
ids = ["*"];
settings = {
main = {
capslock = "overload(alt, esc)";
};
"alt" = {
c = "backspace";
d = "delete";
e = "enter";
h = "left";
j = "down";
k = "up";
l = "right";
capslock = "capslock";
};
};
};
};
};
}