1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-30 01:57:23 +02:00
nixos-hardware/apple/macbook-air/4/default.nix
2017-12-25 04:55:29 +00:00

13 lines
187 B
Nix

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