1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-09-20 13:27:22 +02:00
nixos-hardware/lenovo/thinkpad/t14/amd/gen5/default.nix
mexisme 405b654893 Add Lenovo Thinkpad T14 Gen5
- Which is basically the same as Gen4 ...
2024-07-23 17:03:44 +00:00

12 lines
340 B
Nix

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