1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix
Michael Peyton Jones cbdcc55f37 Add acpi_call module
2018-06-08 23:54:25 +01:00

20 lines
262 B
Nix

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