mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 16:49:40 +01:00
12 lines
339 B
Nix
12 lines
339 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;
|
||
|
}
|