Add module for ASUS Wireless-AC1300 dongle

This commit is contained in:
Stani Pintjuk 2017-06-17 15:56:16 +02:00 committed by Emery Hemingway
parent 68e007ae77
commit 744f289978
1 changed files with 6 additions and 0 deletions

6
asus/wireless-ac1300.nix Normal file
View File

@ -0,0 +1,6 @@
# Use this module if you use a realtek 18812au based wifi dongle, like ASUS Wireless-AC1300
{ pkgs, ... }:
{
boot.extraModulePackages = [ pkgs.linuxPackages.rtl8812au ];
boot.kernelModules = [ "8812au" ];
}