mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			7 lines
		
	
	
		
			211 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			211 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
# 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" ];
 | 
						|
}
 |