enable num lock on login

This commit is contained in:
Noah Masur 2023-03-21 18:37:22 -04:00
parent e7468ecc46
commit bda59eeb4a

View File

@ -1,15 +1,22 @@
{ ... }: { { config, ... }: {
services.xserver = { config = {
layout = "us"; services.xserver = {
# Keyboard responsiveness layout = "us";
autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Swap escape key with caps lock key # Keyboard responsiveness
xkbOptions = "eurosign:e,caps:swapescape"; autoRepeatDelay = 250;
autoRepeatInterval = 40;
# Swap escape key with caps lock key
xkbOptions = "eurosign:e,caps:swapescape";
};
# Enable num lock on login
home-manager.users.${config.user}.xsession.numlock.enable = true;
}; };