mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
b750b56a20
acpi_call is required to use tlp on lenovo thinkpad x270 and some x270 have an ssd. Therefor, acpi_call and ssd have been added to the lenovo thinkpad x270 hardware config.
13 lines
251 B
Nix
13 lines
251 B
Nix
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
../../../common/pc/laptop/acpi_call.nix
|
|
../../../common/pc/laptop/ssd
|
|
];
|
|
|
|
boot.kernelParams = [
|
|
# Disable "Panel Self Refresh". Fix random freezes.
|
|
"i915.enable_psr=0"
|
|
];
|
|
}
|