1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-01 18:43:34 +02:00
nixos-hardware/lenovo/thinkpad/t14s/amd/gen1/default.nix
2022-06-28 08:28:04 +02:00

14 lines
286 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
../.
];
# 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;
}