mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			286 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			286 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
 | 
						|
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
  ];
 | 
						|
  # Wifi support
 | 
						|
  hardware.firmware = [ pkgs.rtw89-firmware ];
 | 
						|
 | 
						|
  # For mainline support of rtw89 wireless networking
 | 
						|
  boot.kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "5.16") pkgs.linuxPackages_latest;
 | 
						|
}
 |