my-nixos-config/nixos/modules/rebinding.nix
2025-11-11 16:09:55 +01:00

14 lines
233 B
Nix

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