mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-09 03:56:09 +01:00
MacBookAir6,x: fix wireless
This commit is contained in:
parent
4c38a024fa
commit
0632a5e10f
1 changed files with 5 additions and 1 deletions
|
|
@ -1,8 +1,12 @@
|
||||||
{ lib, ... }:
|
{ config, lib, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [ ../. ];
|
imports = [ ../. ];
|
||||||
|
|
||||||
|
boot.kernelModules = [ "wl" ];
|
||||||
|
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
|
||||||
|
boot.blacklistedKernelModules = [ "bcma" ];
|
||||||
|
|
||||||
boot = {
|
boot = {
|
||||||
# Divides power consumption by two.
|
# Divides power consumption by two.
|
||||||
kernelParams = [ "acpi_osi=" ];
|
kernelParams = [ "acpi_osi=" ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue