mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 04:02:55 +00:00
14 lines
226 B
Nix
14 lines
226 B
Nix
{ ... }: {
|
|
|
|
services.xserver = {
|
|
# Keyboard responsiveness
|
|
autoRepeatDelay = 250;
|
|
autoRepeatInterval = 40;
|
|
|
|
# Configure keymap in X11
|
|
layout = "us";
|
|
xkbOptions = "eurosign:e,caps:swapescape";
|
|
};
|
|
|
|
}
|