apple-macbook-pro-8-1: add README.md

explaning to users how they can enable installtion of free packages
needed for b43-firmware to work
This commit is contained in:
Rayan Nakib (ريان نقيب)
2024-09-07 09:09:11 +01:00
committed by mergify[bot]
parent 1b3a547126
commit 502e0aed31

View File

@@ -0,0 +1,24 @@
# MacBook Pro 8,1
## Enable unfree packages in your nix config for b43-firmware (wifi driver) to work
### For b43-firmware only (Ideal)
```nix
{lib, ...}:
{
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"b43-firmware"
];
}
```
### For all packages
```nix
{
nixpkgs.config.allowUnfree = true;
}
```