1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/lenovo/thinkpad/t14/amd/gen3/default.nix
2022-09-13 16:36:19 -07:00

12 lines
299 B
Nix

{ config, lib, pkgs, ... }:
{
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;
}