mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
11 lines
299 B
Nix
11 lines
299 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
];
|
|
|
|
# For the Qualcomm NFA-725A (Device 1103) wireless network controller
|
|
# See https://bugzilla.redhat.com/show_bug.cgi?id=2047878
|
|
boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
|
|
}
|