mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-15 17:51:01 +00:00
636d1a09d8
Use this and never find yourself again hitting fn because of muscle memory! (you can even physically swap the keycaps, at least on M series) Keycodes have been pulled from https://hidutil-generator.netlify.app/ and the hex value has been converted to a base 10 int.
24 lines
1.2 KiB
Nix
24 lines
1.2 KiB
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
system.keyboard.enableKeyMapping = true;
|
|
system.keyboard.remapCapsLockToControl = true;
|
|
system.keyboard.remapCapsLockToEscape = true;
|
|
system.keyboard.nonUS.remapTilde = true;
|
|
system.keyboard.swapLeftCommandAndLeftAlt = true;
|
|
system.keyboard.swapLeftCtrlAndFn = true;
|
|
|
|
test = ''
|
|
echo checking keyboard mappings in /activate >&2
|
|
grep "hidutil property --set '{\"UserKeyMapping\":.*}'" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingSrc\":30064771129" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingSrc\":30064771172" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771113" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771125" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771296" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771298" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771299" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":30064771296" ${config.out}/activate
|
|
grep "\"HIDKeyboardModifierMappingDst\":1095216660483" ${config.out}/activate
|
|
'';
|
|
}
|