1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-09 20:16:30 +02:00
nixos-hardware/lenovo/thinkpad/z/gen1/default.nix

9 lines
253 B
Nix
Raw Normal View History

{ 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);
}