14 lines
187 B
Nix
14 lines
187 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
boot.kernelParams = [
|
|
"acpi_backlight=vendor"
|
|
];
|
|
|
|
services.xserver.deviceSection = lib.mkDefault ''
|
|
Option "TearFree" "true"
|
|
'';
|
|
}
|