macbook air 7

This commit is contained in:
Bit Borealis
2024-09-23 21:00:22 -04:00
committed by mergify[bot]
parent 4048e9ce2d
commit 8cf35efba1
4 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# MacBook Air 7,X
### For wifi driver
broadcomt_sta was the best working driver I could find, however on the normal kernel, you need to `sudo modprobe -r wl` and `sudo modprobe wl`, however it was fully working on the zen kernel.

View File

@@ -0,0 +1,9 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
];
boot.extraModulePackages = lib.mkDefault [ config.boot.kernelPackages.broadcom_sta ];
}