mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
36 lines
504 B
Nix
36 lines
504 B
Nix
{
|
|
config.services.keyd = {
|
|
enable = true;
|
|
keyboards.default = {
|
|
ids = ["*"];
|
|
extraConfig = ''
|
|
[global]
|
|
|
|
default_layout = main
|
|
|
|
[main:layout]
|
|
|
|
capslock = layer(standardL2)
|
|
|
|
[standardL2]
|
|
|
|
w = up
|
|
s = down
|
|
a = left
|
|
d = right
|
|
|
|
b = C-b
|
|
|
|
space = playpause
|
|
. = nextsong
|
|
, = previoussong
|
|
|
|
[ = delete
|
|
] = end
|
|
escape = ~
|
|
|
|
home = end
|
|
'';
|
|
};
|
|
};
|
|
}
|