dotfiles/nixcfgs/hosts/zephyrus/keyd.nix
2025-10-24 22:41:27 +01:00

19 lines
348 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
keyd
];
services.keyd = {
enable = true;
keyboards = {
externalKeyboard = {
ids = ["0b05:19b6:d167885d"]; # ASUS Keyboard
settings = {
main = {
capslock = "overload(control, esc)";
};
};
};
};
};
}