CrOS/hosts/common/optional/keyd.nix
TheWanderingCrow b346790feb treewide format
2026-04-04 22:59:28 -04:00

31 lines
534 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";
};
};
};
};
}