From d414e862f5198ace3889739458ef17f4196ce0a4 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Wed, 26 Nov 2025 19:17:29 +0530 Subject: [PATCH] fix(tako): remove nvme from initrd modules and switch cpu microcode update to intel --- nixos/tako/tako.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nixos/tako/tako.nix b/nixos/tako/tako.nix index ec39b35c..3981362e 100644 --- a/nixos/tako/tako.nix +++ b/nixos/tako/tako.nix @@ -13,9 +13,9 @@ ./disk-config.nix ]; - boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci"]; + boot.initrd.availableKernelModules = ["xhci_pci" "ahci"]; boot.initrd.kernelModules = ["dm-snapshot"]; - boot.kernelModules = ["kvm-amd"]; + boot.kernelModules = ["kvm-intel"]; boot.extraModulePackages = []; boot.binfmt.emulatedSystems = ["aarch64-linux"]; @@ -60,5 +60,5 @@ # networking.interfaces.enp6s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }