mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
9 lines
253 B
Nix
9 lines
253 B
Nix
|
{ lib, pkgs, ... }: {
|
||
|
imports = [
|
||
|
../../../../lenovo/thinkpad/z
|
||
|
];
|
||
|
|
||
|
# Kernel 5.18 is required for the Ryzen 6000 series
|
||
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.18") (lib.mkDefault pkgs.linuxPackages_latest);
|
||
|
}
|