mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 02:02:56 +00:00
d021baa1bb
required because they don't share all attributes
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";
|
|
|
|
};
|
|
|
|
}
|