Add config file

This commit is contained in:
Keanu Kerr
2025-06-01 07:05:03 -04:00
parent 773b49122a
commit e9dcc95a38

View File

@@ -0,0 +1,12 @@
{ lib, pkgs, ... }:
{
imports = [
../.
../../../../../common/cpu/amd/pstate.nix
];
# 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;
}