2023-11-10 15:26:56 -05:00
|
|
|
{ lib, pkgs, ...}: {
|
|
|
|
imports = [
|
2023-11-10 16:10:31 -05:00
|
|
|
../common
|
|
|
|
../common/intel.nix
|
2023-11-10 15:26:56 -05: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);
|
|
|
|
}
|