From 0863a8a5921415e4f02227169afbba7f7535d71a Mon Sep 17 00:00:00 2001 From: _cry64 Date: Fri, 27 Mar 2026 12:15:00 +1000 Subject: [PATCH] manual apple-t2 config --- hosts/modules/core/t2-firmware.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/hosts/modules/core/t2-firmware.nix b/hosts/modules/core/t2-firmware.nix index f22d238..086ff80 100644 --- a/hosts/modules/core/t2-firmware.nix +++ b/hosts/modules/core/t2-firmware.nix @@ -12,6 +12,23 @@ # REF: https://github.com/t2linux/nixos-t2-iso python3 dmg2img - get-apple-firmware + # get-apple-firmware ]; + + hardware = { + apple.touchBar.enable = true; + + # REF: https://github.com/NixOS/nixos-hardware/blob/master/apple/t2/default.nix + apple-t2 = { + # the macbook does not have an AMD dGPU (iGPU) + enableIGPU = false; + + kernelChannel = "stable"; + + firmware = { + enable = true; + version = "sonoma"; + }; + }; + }; }