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

15 lines
247 B
Nix

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