We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49301c2 commit 21770d7Copy full SHA for 21770d7
home-manager/profiles/desktop/default.nix
@@ -11,7 +11,6 @@
11
home.keyboard = {
12
variant = "colemak";
13
layout = "us";
14
- options = "caps:swapescape";
15
};
16
17
pinpox = {
machines/kiwi/configuration.nix
@@ -29,4 +29,11 @@
29
# For dual-boot
30
boot.loader.efi.canTouchEfiVariables = true;
31
boot.loader.grub.efiInstallAsRemovable = lib.mkForce false;
32
+
33
+ # Remap Caps Lock to Esc and vice versa
34
+ services.udev.extraHwdb = ''
35
+ evdev:atkbd:dmi:*
36
+ KEYBOARD_KEY_3a=esc # Caps Lock -> Esc
37
+ KEYBOARD_KEY_01=capslock # Esc -> Caps Lock
38
+ '';
39
}
0 commit comments