dotfiles/nixcfgs/hosts/zephyrus/keyd.nix
2025-10-13 00:59:21 +01:00

21 lines
353 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)";
};
};
};
};
};
}