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

17 lines
236 B
Nix
Raw Normal View History

2017-12-24 23:49:53 -05:00
{ lib, ... }:
2017-12-24 23:32:30 -05:00
{
imports = [
../.
../../../common/cpu/intel/sandy-bridge
];
2017-12-24 23:32:30 -05:00
boot.kernelParams = [
"acpi_backlight=vendor"
];
2017-12-24 23:49:53 -05:00
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
2017-12-24 23:32:30 -05:00
}