1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-28 23:48:33 +02:00
nixos-hardware/apple/macbook-air/4/default.nix

14 lines
187 B
Nix
Raw Normal View History

2017-12-25 05:49:53 +01:00
{ lib, ... }:
2017-12-25 05:32:30 +01:00
{
imports = [ ../. ];
boot.kernelParams = [
"acpi_backlight=vendor"
];
2017-12-25 05:49:53 +01:00
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
2017-12-25 05:32:30 +01:00
}