1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-05-31 18:13:34 +02:00
nixos-hardware/lenovo/thinkpad/x230/default.nix
Jörg Thalheim 41d2c3322b
Revert "Change TLP charge thresholds"
This reverts commit 76f681355c.

This setting is opinionated and should be left to the user.
See: https://github.com/NixOS/nixos-hardware/pull/154#issuecomment-617181517
2020-04-21 21:10:18 +01:00

20 lines
285 B
Nix

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