mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 19:15:37 +00:00
enable num lock on login
This commit is contained in:
parent
e7468ecc46
commit
bda59eeb4a
@ -1,15 +1,22 @@
|
||||
{ ... }: {
|
||||
{ config, ... }: {
|
||||
|
||||
services.xserver = {
|
||||
config = {
|
||||
|
||||
layout = "us";
|
||||
services.xserver = {
|
||||
|
||||
# Keyboard responsiveness
|
||||
autoRepeatDelay = 250;
|
||||
autoRepeatInterval = 40;
|
||||
layout = "us";
|
||||
|
||||
# Swap escape key with caps lock key
|
||||
xkbOptions = "eurosign:e,caps:swapescape";
|
||||
# Keyboard responsiveness
|
||||
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;
|
||||
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user