add lenovo/thinkpad/x1/yoga/7th-gen

This commit is contained in:
MayNiklas
2022-10-22 15:35:24 +02:00
parent 0e65936300
commit 2c27afc7ed
3 changed files with 16 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{ lib, pkgs, ... }: {
imports = [
../.
../../../../../common/pc/laptop/ssd
];
# This laptop is too new for the kernel currently in nixos-unstable.
# On Kernel 5.15.x, dmesg shows the `hardware is newer than drivers` message.
# When starting the system with 5.15.x, only a tty is being displayed.
# After our tests, at least version 5.19 is required for the system to work properly.
boot.kernelPackages = lib.mkIf
(lib.versionOlder pkgs.linux.version "5.19")
(lib.mkDefault pkgs.linuxPackages_latest);
}