NixOS-Config/modules/system/services/pc/keyd/default.nix

13 lines
189 B
Nix
Raw Normal View History

2024-10-18 20:26:32 -04:00
{ ... }:
{
services.keyd = {
enable = true;
keyboards.default = {
ids = [ "*" ];
settings.main = {
capslock = "overload(control, esc)";
};
};
};
}