CrOS/modules/software/keyd.nix
TheWanderingCrow 3f2dd8fc8a umami test run
2025-02-14 12:13:55 -05:00

35 lines
604 B
Nix

{
lib,
config,
...
}: {
config.services.keyd = lib.mkIf config.software.keyd.enable {
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";
};
};
};
};
}