my-nixos-config/nixos/modules/rebinding.nix
2026-01-23 12:04:59 +01:00

15 lines
233 B
Nix

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