dotfiles/modules/hardware/keyboard.nix
2022-05-29 13:44:45 -04: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";
};
}