summaryrefslogtreecommitdiffstats
path: root/apple/macbook-air/4/default.nix
blob: 181a099799a1f2b0c7cf3bfafd82a1d25bf48464 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ lib, ... }:

{
  imports = [
    ../.
    ../../../common/cpu/intel/sandy-bridge
  ];

  boot.kernelParams = [
    "acpi_backlight=vendor"
  ];

  services.xserver.deviceSection = lib.mkDefault ''
    Option "TearFree" "true"
  '';
}