1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware.git synced 2024-10-18 14:35:21 -04:00

p14s: ensure rtw89 driver is available

This commit is contained in:
Simon Bruder 2022-05-31 13:38:23 +02:00
parent 39a7bfc496
commit 07e5049f8f
No known key found for this signature in database
GPG key ID: 8D3C82F9F309F8EC

View file

@ -15,6 +15,6 @@
# Wifi support # Wifi support
hardware.firmware = [ pkgs.rtw89-firmware ]; hardware.firmware = [ pkgs.rtw89-firmware ];
# For support of newer AMD GPUs, backlight and internal microphone # For mainline support of rtw89 wireless networking
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.13") pkgs.linuxPackages_latest; boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
} }