summaryrefslogtreecommitdiffstats
path: root/asus/wireless-ac1300.nix
blob: 39aa1c7f89da4d813142fb7a00b19982465cf67e (plain)
1
2
3
4
5
6
7
8
# 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" ];
}