mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
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:
committed by
mergify[bot]
parent
1b3a547126
commit
502e0aed31
24
apple/macbook-pro/8-1/README.md
Normal file
24
apple/macbook-pro/8-1/README.md
Normal 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;
|
||||
}
|
||||
```
|
||||
Reference in New Issue
Block a user