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

15 lines
222 B
Nix
Raw Normal View History

2023-12-25 21:14:17 +01:00
{ lib, ... }:
2017-12-25 02:24:54 +01:00
{
imports = [ ../. ];
boot = {
# Divides power consumption by two.
kernelParams = [ "acpi_osi=" ];
2017-12-25 02:24:54 +01:00
};
services.xserver.deviceSection = lib.mkDefault ''
2018-01-07 18:26:37 +01:00
Option "TearFree" "true"
2017-12-25 02:24:54 +01:00
'';
}