2022-12-31 05:52:38 -05:00
|
|
|
{ lib, pkgs, ... }:
|
2022-09-13 19:27:39 -04:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
2023-10-13 22:05:00 -04:00
|
|
|
../../../../../common/cpu/amd/pstate.nix
|
2022-09-13 19:27:39 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
# 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;
|
|
|
|
}
|