1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-11-15 15:39:41 +01:00
nixos-hardware/apple/macbook-pro/11-1/default.nix

15 lines
380 B
Nix
Raw Normal View History

2024-11-01 23:02:58 +01:00
{ lib, config, ... }:
{
imports = [
../.
../../../common/pc/laptop/ssd
../../../common/cpu/intel/haswell
];
# broadcom-wl
hardware.enableRedistributableFirmware = lib.mkDefault true;
# nixos-generate-config doesn't detect this automatically.
2024-11-01 23:02:58 +01:00
boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
boot.kernelModules = [ "wl" ];
}