mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-08 11:36:10 +01:00
6 lines
184 B
Nix
6 lines
184 B
Nix
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
# For mainline support of rtw89 wireless networking
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
|
|
}
|