dotfiles/modules/hardware/keyboard.nix

14 lines
226 B
Nix
Raw Normal View History

2022-04-29 02:12:16 +00:00
{ ... }: {
services.xserver = {
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Configure keymap in X11
layout = "us";
xkbOptions = "eurosign:e,caps:swapescape";
};
}