1
0
Fork 0

fix(nix): caps as backspace keyboard configuration

This commit is contained in:
Lucas Sta Maria 2025-02-26 00:05:07 -05:00
parent 80a08e938b
commit 4892d9ee4c
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -123,8 +123,11 @@
enable = true; enable = true;
windowManager.i3.enable = true; windowManager.i3.enable = true;
displayManager.lightdm.enable = true; displayManager.lightdm.enable = true;
xkb.layout = "us"; xkb = {
xkb.variant = "dvp"; layout = "us";
variant = "dvp";
options = "caps:backspace";
};
autoRepeatDelay = 350; autoRepeatDelay = 350;
autoRepeatInterval = 17; autoRepeatInterval = 17;
}; };