17 lines
266 B
Nix
17 lines
266 B
Nix
{ ... }:
|
|
{
|
|
|
|
services.keyd = {
|
|
enable = true;
|
|
keyboards.default = {
|
|
ids = [ "*" ];
|
|
settings = {
|
|
main = {
|
|
rightalt = "overload(altgr, rightalt)";
|
|
capslock = "overload(control, esc)";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
}
|