mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
31 lines
532 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|