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

{
  imports = [ ../. ];

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

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