1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-03 18:03:27 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix

23 lines
343 B
Nix
Raw Normal View History

2017-12-26 22:54:10 +01:00
{ config, lib, pkgs, ... }:
{
2017-12-26 22:54:10 +01:00
imports = [
../.
../../../common/cpu/intel
];
boot = {
extraModulePackages = with config.boot.kernelPackages; [
acpi_call
];
2017-12-26 22:54:10 +01:00
kernelModules = [
"acpi_call"
"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
}