2022-12-31 05:52:38 -05:00
|
|
|
{ lib, pkgs, ... }:
|
2022-02-01 08:16:50 -05:00
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
../.
|
2023-10-13 22:15:57 -04:00
|
|
|
../../../../../common/cpu/amd/pstate.nix
|
2022-02-01 08:16:50 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
# For support of MEDIATEK Corp. Device 7961 wireless network controller, see https://lwn.net/Articles/843303/
|
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.12") pkgs.linuxPackages_latest;
|
|
|
|
}
|