mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			211 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../.
 | 
						|
    ../../../common/cpu/amd
 | 
						|
  ];
 | 
						|
 | 
						|
  boot.extraModprobeConfig = lib.mkDefault ''
 | 
						|
    options snd_hda_intel enable=0,1
 | 
						|
  '';
 | 
						|
 | 
						|
  services.xserver.videoDrivers = [ "ati" ];
 | 
						|
}
 |