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

15 lines
222 B
Nix
Raw Normal View History

2023-12-25 15:14:17 -05:00
{ lib, ... }:
2017-12-24 20:24:54 -05:00
{
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
'';
}