mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-14 23:19:41 +01:00
14 lines
380 B
Nix
14 lines
380 B
Nix
{ 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.
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
|
|
boot.kernelModules = [ "wl" ];
|
|
}
|