nixos-hardware/lenovo/thinkpad/t14s/default.nix

21 lines
682 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ lib, pkgs, ... }:
2020-10-25 19:24:43 +01:00
{
imports = [
../.
../../../common/pc/laptop/acpi_call.nix
];
# For suspending to RAM to work, set Config -> Power -> Sleep State to "Linux" in EFI.
# See https://wiki.archlinux.org/index.php/Lenovo_ThinkPad_X1_Carbon_(Gen_6)#Suspend_issues
# Fingerprint sensor requires a firmware-update to work.
2020-10-25 19:24:43 +01:00
# Force use of the thinkpad_acpi driver for backlight control.
# This allows the backlight save/load systemd service to work.
boot.kernelParams = [ "acpi_backlight=native" ];
# see https://github.com/NixOS/nixpkgs/issues/69289
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.2") pkgs.linuxPackages_latest;
}