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

Merge pull request #563 from ncfavier/remove-rtw89

t14s,p14s: remove rtw89-firmware
This commit is contained in:
Sandro 2023-02-24 10:52:06 +01:00 committed by GitHub
commit 2d44015779
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@
# Wifi support
hardware.firmware = [ pkgs.rtw89-firmware ];
hardware.firmware = lib.mkIf (lib.versionOlder pkgs.linux-firmware.version "20230210") [ pkgs.rtw89-firmware ];
# For mainline support of rtw89 wireless networking
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;

View file

@ -6,7 +6,7 @@
../.
];
# Wifi support
hardware.firmware = [ pkgs.rtw89-firmware ];
hardware.firmware = lib.mkIf (lib.versionOlder pkgs.linux-firmware.version "20230210") [ pkgs.rtw89-firmware ];
# For mainline support of rtw89 wireless networking
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;