mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	581: lenovo 16ach6h: add amd cpu pstate r=Mic92 a=LostAttractor Co-authored-by: ChaosAttractor <46527539+LostAttractor@users.noreply.github.com>
		
			
				
	
	
		
			27 lines
		
	
	
		
			552 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			552 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../../common/cpu/amd
 | 
						|
    ../../../../common/cpu/amd/pstate.nix
 | 
						|
    ../../../../common/gpu/amd
 | 
						|
    ../../../../common/gpu/nvidia/prime.nix
 | 
						|
    ../../../../common/pc/laptop
 | 
						|
    ../../../../common/pc/laptop/ssd
 | 
						|
    ../edid
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware = {
 | 
						|
    amdgpu.loadInInitrd = lib.mkDefault false;
 | 
						|
 | 
						|
    nvidia = {
 | 
						|
      modesetting.enable = lib.mkDefault true;
 | 
						|
      powerManagement.enable = lib.mkDefault true;
 | 
						|
 | 
						|
      prime = {
 | 
						|
        amdgpuBusId = "PCI:6:0:0";
 | 
						|
        nvidiaBusId = "PCI:1:0:0";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
} |