mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
502e0aed31
explaning to users how they can enable installtion of free packages needed for b43-firmware to work
24 lines
346 B
Markdown
24 lines
346 B
Markdown
# 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;
|
|
}
|
|
```
|