From a3efd46620a6b9f60a82b66f22c1c363223d60d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Mon, 19 Aug 2024 09:57:39 +0200 Subject: [PATCH] apple/imac/18-2: fix gpu import path --- apple/imac/18-2/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apple/imac/18-2/default.nix b/apple/imac/18-2/default.nix index fbbfeba..f44a8fc 100644 --- a/apple/imac/18-2/default.nix +++ b/apple/imac/18-2/default.nix @@ -6,7 +6,7 @@ }: { imports = [ ../. - ../../../common/cpu/intel/kaby-lake + ../../../common/gpu/intel/kaby-lake ../../../common/gpu/intel ../../../common/gpu/amd ../../../common/hidpi.nix @@ -14,16 +14,16 @@ ../../../common/pc/laptop/acpi_call.nix ]; - # apple smc (TODO: check spi) + # 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 + # Wifi, CPU Microcode FW updates networking.enableB43Firmware = lib.mkDefault true; - hardware = { + hardware = { enableRedistributableFirmware = lib.mkDefault true; cpu.intel.updateMicrocode = lib.mkDefault true; };