NixOS-Config/modules/system/services/pc/keyd/default.nix
2024-10-18 20:33:03 -04:00

13 lines
189 B
Nix

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