apple: init MacBookPro11,1

This commit is contained in:
Johannes Arnold
2024-11-01 23:02:58 +01:00
committed by mergify[bot]
parent f372fa6cfa
commit 7a9364e705
4 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
# Apple MacBook Pro 11,1
This configuration is tested on my 13" *MacBook Pro (Retina, 13-inch, Late 2013),* model number `A1502`.
The 6.11.5 kernel appears to work well with only minor adjustments on this notebook. Note that my machine has a BCM4360 wireless card (PCI-ID `14e4:43a0`) which appears to only work with the nonfree `wl` driver.
## Additional resources
* Linux Wireless Documentation: [List of hardware](https://wireless.docs.kernel.org/en/latest/en/users/drivers/b43.html#list-of-hardware)
* Arch linux wiki: [MacBookPro11,x](https://wiki.archlinux.org/index.php/MacBookPro11,x)
* Kernel patches: [MacBookPro11,x](https://bugzilla.kernel.org/buglist.cgi?quicksearch=macbookpro11)

View File

@@ -0,0 +1,13 @@
{ lib, config, ... }:
{
imports = [
../.
../../../common/pc/laptop/ssd
../../../common/cpu/intel/haswell
];
# broadcom-wl
hardware.enableRedistributableFirmware = lib.mkDefault true;
boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
boot.kernelModules = [ "wl" ];
}