Add mac app agent and Terminal.app specific keybinds

This commit is contained in:
2026-03-18 07:59:46 -07:00
parent 025d33b739
commit 96d5a2b249
9 changed files with 195 additions and 3 deletions

View File

@@ -25,6 +25,10 @@
shellHook = ''
export QMK_HOME="$PWD/qmk_firmware"
ln -sfn "$PWD/keymaps/custom" "$QMK_HOME/keyboards/system76/launch_3/keymaps/custom"
git -C "$QMK_HOME" checkout -- .
for p in "$PWD"/patches/*.patch; do
[ -f "$p" ] && patch -d "$QMK_HOME" -p1 < "$p"
done
'';
};
});
@@ -40,6 +44,9 @@
src = ./qmk_firmware;
patches = builtins.map (f: ./patches + "/${f}")
(builtins.attrNames (builtins.readDir ./patches));
postUnpack = ''
cp -r ${./keymaps/custom} $sourceRoot/keyboards/system76/launch_3/keymaps/custom
'';