nix-config/modules/default/nixos/keyd.nix
2025-02-09 16:49:24 +01:00

17 lines
266 B
Nix

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