1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 08:58:32 +02:00
nixos-hardware/lenovo/thinkpad/p1/default.nix
Pavel Nazarov b2186d6c3c
Add lenovo-thinkpad-p1 (#266)
Co-authored-by: Jörg Thalheim <Mic92@users.noreply.github.com>
2021-06-01 05:30:09 +01:00

18 lines
503 B
Nix

{
imports = [
../../../common/cpu/intel
../../../common/gpu/nvidia.nix
../../../common/pc/laptop/acpi_call.nix
../../../common/pc/laptop/ssd
];
# Need to set Thunderbolt to "BIOS Assist Mode"
# https://forums.lenovo.com/t5/Other-Linux-Discussions/T480-CPU-temperature-and-fan-speed-under-linux/m-p/4114832
boot.kernelParams = [ "acpi_backlight=native" ];
# Emulate mouse wheel on trackpoint
# hardware.trackpoint.emulateWheel = true;
services.fprintd.enable = true;
}