mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-15 07:29:41 +01:00
14 lines
319 B
Nix
14 lines
319 B
Nix
|
{ lib, config, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
../.
|
||
|
../../../common/pc/laptop/ssd
|
||
|
../../../common/cpu/intel/haswell
|
||
|
];
|
||
|
|
||
|
# broadcom-wl
|
||
|
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||
|
boot.extraModulePackages = with config.boot.kernelPackages; [ broadcom_sta ];
|
||
|
boot.kernelModules = [ "wl" ];
|
||
|
}
|