mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +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";
|
||
|
};
|
||
|
|
||
|
}
|