mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
e1c4bac14b
lenovo-thinkpad-z: remove HiDPI * lenovo-thinkpad-z: move z13 to gen1/z13, leave generic settings * lenovo-thinkpad-z-gen2: add z13 * Update lenovo/thinkpad/z/gen2/default.nix * Update lenovo/thinkpad/z/gen2/default.nix
20 lines
730 B
Nix
20 lines
730 B
Nix
{ lib, pkgs, ... }: {
|
||
imports = [
|
||
../../../lenovo/thinkpad
|
||
../../../common/cpu/amd
|
||
../../../common/cpu/amd/pstate.nix
|
||
../../../common/gpu/amd
|
||
../../../common/pc/laptop
|
||
../../../common/pc/laptop/acpi_call.nix
|
||
../../../common/pc/laptop/ssd
|
||
];
|
||
|
||
hardware.enableRedistributableFirmware = lib.mkDefault true;
|
||
hardware.trackpoint.device = lib.mkDefault "TPPS/2 Elan TrackPoint";
|
||
|
||
services.fprintd.enable = lib.mkDefault true;
|
||
|
||
# kernel versions below 6.0 don’t contain ACPI suspend2idle drivers for the Z-series’ AMD hardware
|
||
# my Z13 froze after waking up from suspend/ hibernate
|
||
services.logind.lidSwitch = lib.mkIf (lib.versionOlder pkgs.linux.version "6.00") (lib.mkDefault "lock");
|
||
}
|