diff --git a/apple/t2/default.nix b/apple/t2/default.nix index e386ce3..739b194 100644 --- a/apple/t2/default.nix +++ b/apple/t2/default.nix @@ -97,5 +97,10 @@ in echo "Error: /boot/efi/efi/boot/bootx64.efi is missing" >&2 fi ''; + + # Enable the iGPU by default if present + environment.etc."modprobe.d/apple-gmux.conf".text = lib.optionalString t2Cfg.enableAppleSetOsLoader '' + options apple-gmux force_igd=y + ''; }; }