mirror of
				https://github.com/NixOS/nixos-hardware.git
				synced 2025-11-04 09:17:14 +08:00 
			
		
		
		
	apple-imac-18-2: add imac, add imac-18-2
This commit is contained in:
		
							
								
								
									
										30
									
								
								apple/imac/18-2/default.nix
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								apple/imac/18-2/default.nix
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,30 @@
 | 
			
		||||
{
 | 
			
		||||
  config,
 | 
			
		||||
  lib,
 | 
			
		||||
  pkgs,
 | 
			
		||||
  ...
 | 
			
		||||
}: {
 | 
			
		||||
  imports = [
 | 
			
		||||
    ../.
 | 
			
		||||
    ../../../common/cpu/intel/kaby-lake
 | 
			
		||||
    ../../../common/gpu/intel
 | 
			
		||||
    ../../../common/gpu/amd
 | 
			
		||||
    ../../../common/hidpi.nix
 | 
			
		||||
    ../../../common/pc/laptop/ssd
 | 
			
		||||
    ../../../common/pc/laptop/acpi_call.nix
 | 
			
		||||
  ];
 | 
			
		||||
 | 
			
		||||
  # apple smc (TODO: check spi) 
 | 
			
		||||
  boot = {
 | 
			
		||||
    initrd.kernelModules = ["applespi" "spi_pxa2xx_platform" "intel_lpss_pci" "applesmc" ];
 | 
			
		||||
    kernelParams = [ "intel_iommu=on" ];
 | 
			
		||||
    kernelPackages = lib.mkIf (lib.versionOlder pkgs.linux.version "6.0") pkgs.linuxPackages_latest;
 | 
			
		||||
  };
 | 
			
		||||
 | 
			
		||||
  # Wifi, CPU Microcode FW updates 
 | 
			
		||||
  networking.enableB43Firmware = lib.mkDefault true;
 | 
			
		||||
  hardware = { 
 | 
			
		||||
    enableRedistributableFirmware = lib.mkDefault true;
 | 
			
		||||
    cpu.intel.updateMicrocode = lib.mkDefault true;
 | 
			
		||||
  };
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user