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

21 lines
301 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ lib, ... }:
2017-12-26 22:54:10 +01:00
{
2017-12-26 22:54:10 +01:00
imports = [
../.
../../../common/cpu/intel
../../../common/pc/laptop
../../../common/pc/laptop/acpi_call.nix
2017-12-26 22:54:10 +01:00
];
boot = {
kernelModules = [
"tpm-rng"
];
};
2018-01-29 14:30:43 +01:00
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
2017-12-26 22:54:10 +01:00
}