1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-25 05:58:31 +02:00
nixos-hardware/asus/wireless-ac1300.nix
2017-12-24 02:34:44 +00:00

9 lines
227 B
Nix

# Use this module if you use a realtek 18812au based wifi dongle, like ASUS Wireless-AC1300
{ pkgs, ... }:
{
boot.extraModulePackages = with config.boot.kernelPackages; [ rtl8812au ];
boot.kernelModules = [ "8812au" ];
}