2023-11-10 20:26:56 +00:00
|
|
|
{ lib, pkgs, ...}: {
|
|
|
|
imports = [
|
2023-11-10 21:10:31 +00:00
|
|
|
../common
|
|
|
|
../common/intel.nix
|
2023-11-10 20:26:56 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
# Requires at least 5.16 for working wi-fi and bluetooth.
|
|
|
|
# https://community.frame.work/t/using-the-ax210-with-linux-on-the-framework-laptop/1844/89
|
|
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") (lib.mkDefault pkgs.linuxPackages_latest);
|
|
|
|
}
|