mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	The Morefine M600 is an AMD-powered Mini PC CPU options (all 6000-series mobile):: • R9-6900HX • R9-6850H • R7-6850U • R7-6800H • R5-6600U If bought with RAM + HDD, you would be getting DDR5 RAM @ 4800MHz & an NVMe drive, however, it can also be purchased “barebone” with the wireless card also being replacable.
		
			
				
	
	
		
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			288 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ lib, pkgs, ...}: {
 | 
						|
  imports = [
 | 
						|
    ../../common/cpu/amd
 | 
						|
    ../../common/cpu/amd/pstate.nix
 | 
						|
    ../../common/gpu/amd
 | 
						|
  ];
 | 
						|
 | 
						|
  hardware.enableRedistributableFirmware = lib.mkDefault true;
 | 
						|
 | 
						|
  # If the wireless card is not replaced
 | 
						|
  # boot.initrd.availableKernelModules = [ "r8169" ];
 | 
						|
}
 |