mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			260 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, pkgs, ... }:
 | 
						|
{
 | 
						|
  hardware.cpu.intel.updateMicrocode = true;
 | 
						|
  
 | 
						|
  # see https://github.com/NixOS/nixpkgs/issues/18356
 | 
						|
  # found buggy driver with method https://wiki.ubuntu.com/DebuggingKernelSuspend
 | 
						|
  boot.blacklistedKernelModules = [ "nouveau" ];
 | 
						|
}
 |