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

15 lines
230 B
Nix
Raw Normal View History

2017-12-24 20:24:54 -05:00
{ config, lib, ... }:
{
imports = [ ../. ];
boot = {
# Divides power consumption by two.
kernelParams = [ "acpi_osi=" ];
2017-12-24 20:24:54 -05:00
};
services.xserver.deviceSection = lib.mkDefault ''
2018-01-07 12:26:37 -05:00
Option "TearFree" "true"
2017-12-24 20:24:54 -05:00
'';
}