1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-16 11:31:39 +02:00
nixos-hardware/apple/macbook-air/6/default.nix
2023-12-25 20:25:23 +00:00

14 lines
222 B
Nix

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