lenovo/thinkpad/t14/amd/gen4: init

This commit is contained in:
Tad Fisher
2023-10-13 19:04:48 -07:00
committed by mergify[bot]
parent 0d3eafc014
commit 2659a52d7a
3 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ 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;
}