1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-01 08:39:41 +01:00
nixos-hardware/apple/macbook-pro/8-1
2024-10-21 09:00:57 +00:00
..
default.nix treewide: Switch from gpu/intel to cpu/intel where applicable 2024-10-21 09:00:57 +00:00
README.md apple-macbook-pro-8-1: add README.md 2024-09-07 13:23:33 +00:00

MacBook Pro 8,1

Enable unfree packages in your nix config for b43-firmware (wifi driver) to work

For b43-firmware only (Ideal)

{lib, ...}:

{
  nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
    "b43-firmware"
  ];
}

For all packages

{
  nixpkgs.config.allowUnfree = true;
}