1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-18 20:37:22 +02:00
nixos-hardware/lenovo/thinkpad/p14s/amd/gen4/default.nix

12 lines
339 B
Nix
Raw Normal View History

2023-10-14 04:04:14 +02:00
{ lib, pkgs, config, ... }:
{
imports = [
../.
../../../../../common/cpu/amd/pstate.nix
];
# For the Qualcomm NFA765 [17cb:1103] wireless network controller
# See https://bugzilla.redhat.com/show_bug.cgi?id=2047878
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
}