mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
17 lines
240 B
Nix
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";
|
|
|
|
};
|
|
|
|
}
|