nixos-hardware/lenovo/thinkpad/t14/amd/gen3/default.nix

12 lines
291 B
Nix
Raw Normal View History

2022-12-31 11:52:38 +01:00
{ lib, pkgs, ... }:
2022-09-14 01:27:39 +02:00
{
imports = [
../.
];
# For the Qualcomm NFA-725A (Device 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;
}