nixos-hardware/apple/macbook-air/4/default.nix

14 lines
187 B
Nix

{ lib, ... }:
{
imports = [ ../. ];
boot.kernelParams = [
"acpi_backlight=vendor"
];
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
}