1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 17:08:32 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix
2018-01-29 13:30:43 +00:00

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"
'';
}