mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
10 lines
356 B
Nix
10 lines
356 B
Nix
{ lib, pkgs, ...}: {
|
|
imports = [
|
|
../common
|
|
../common/intel.nix
|
|
];
|
|
|
|
# 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);
|
|
}
|