dotfiles/modules/nixos/hardware/keyboard.nix
2023-02-20 20:37:37 -05:00

17 lines
240 B
Nix

{ ... }: {
services.xserver = {
layout = "us";
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Swap escape key with caps lock key
xkbOptions = "eurosign:e,caps:swapescape";
};
}