1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/apple/macbook-air/6/default.nix
2023-12-25 20:25:23 +00:00

15 lines
222 B
Nix

{ lib, ... }:
{
imports = [ ../. ];
boot = {
# Divides power consumption by two.
kernelParams = [ "acpi_osi=" ];
};
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
}