Files
nixos-hardware/apple/macbook-pro/8-1
Peter Bittner 7d9552ef6b Replace symlink references by real path and delete symlink
The common/pc/laptop/ssd folder was apparently moved a level up and was
replaced by a symlink to keep things working. We can consolidate this now.
2025-05-05 11:17:15 +02:00
..
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;
}