2023-11-10 21:26:56 +01:00
|
|
|
{ lib, pkgs, ...}: {
|
|
|
|
imports = [
|
2023-11-10 22:10:31 +01:00
|
|
|
../common
|
|
|
|
../common/intel.nix
|
2023-11-10 21:26:56 +01: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);
|
2024-11-16 14:12:12 +01:00
|
|
|
|
|
|
|
hardware.framework.laptop13.audioEnhancement.rawDeviceName = lib.mkDefault "alsa_output.pci-0000_00_1f.3.analog-stereo";
|
2023-11-10 21:26:56 +01:00
|
|
|
}
|