dotfiles/modules/hardware/keyboard.nix
2022-04-28 22:12:16 -04:00

14 lines
226 B
Nix

{ ... }: {
services.xserver = {
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Configure keymap in X11
layout = "us";
xkbOptions = "eurosign:e,caps:swapescape";
};
}