17 lines
240 B
Nix
Raw Normal View History

2022-04-28 22:12:16 -04:00
{ ... }: {
services.xserver = {
2022-05-29 13:44:45 -04:00
layout = "us";
2022-04-28 22:12:16 -04:00
# Keyboard responsiveness
autoRepeatDelay = 250;
autoRepeatInterval = 40;
2022-05-29 13:44:45 -04:00
# Swap escape key with caps lock key
2022-04-28 22:12:16 -04:00
xkbOptions = "eurosign:e,caps:swapescape";
2022-05-29 13:44:45 -04:00
2022-04-28 22:12:16 -04:00
};
}