Files
nixos-hardware/apple/macbook-air/6/default.nix
2025-09-15 15:19:23 +02:00

19 lines
384 B
Nix

{ config, lib, ... }:
{
imports = [ ../. ];
boot.kernelModules = [ "wl" ];
boot.extraModulePackages = [ config.boot.kernelPackages.broadcom_sta ];
boot.blacklistedKernelModules = [ "bcma" ];
boot = {
# Divides power consumption by two.
kernelParams = [ "acpi_osi=" ];
};
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
}