nixos-hardware/lenovo/thinkpad/t14s/amd/gen1/default.nix

14 lines
286 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
imports = [
../.
];
2022-06-28 02:28:04 -04:00
# Wifi support
hardware.firmware = [ pkgs.rtw89-firmware ];
# For mainline support of rtw89 wireless networking
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
}