mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 17:27:14 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			568 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			568 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, ... }:
 | 
						|
 | 
						|
{
 | 
						|
  imports = [
 | 
						|
    ../../../../common/cpu/amd
 | 
						|
    ../../../../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";
 | 
						|
      };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  services.thermald.enable = lib.mkDefault true;
 | 
						|
} |