mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
16 lines
236 B
Nix
16 lines
236 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel/sandy-bridge
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
"acpi_backlight=vendor"
|
|
];
|
|
|
|
services.xserver.deviceSection = lib.mkDefault ''
|
|
Option "TearFree" "true"
|
|
'';
|
|
}
|