1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware.git synced 2024-10-18 14:35:21 -04:00

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

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" ];
}