nixos-hardware/lenovo/thinkpad/x230/default.nix

23 lines
343 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../common/cpu/intel
];
boot = {
extraModulePackages = with config.boot.kernelPackages; [
acpi_call
];
kernelModules = [
"acpi_call"
"tpm-rng"
];
};
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
}