CrOS/hosts/common/optional/keyd.nix
TheWanderingCrow 79e25fcdc8 work
2025-05-26 19:13:26 -04:00

31 lines
532 B
Nix

{
services.keyd = {
enable = true;
keyboards.default = {
ids = ["*"];
settings = {
main = {
capslock = "layer(standardL2)";
};
standardL2 = {
w = "up";
s = "down";
a = "left";
d = "right";
b = "C-b";
space = "playpause";
"." = "nextsong";
"," = "previoussong";
"[" = "delete";
"]" = "end";
escape = "~";
home = "end";
};
};
};
};
}