From 1196958b8f8712f04e4b8a45f8b2275f618e43e3 Mon Sep 17 00:00:00 2001 From: Janis Date: Tue, 2 Sep 2025 23:34:29 +0200 Subject: [PATCH] desktop confix fix --- hosts/desktop/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/desktop/default.nix b/hosts/desktop/default.nix index 48e513d..11b7ea0 100644 --- a/hosts/desktop/default.nix +++ b/hosts/desktop/default.nix @@ -8,7 +8,7 @@ has_battery = true; desktop_scale = 1.3; - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "thunderbolt" "usb_storage" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; @@ -21,5 +21,5 @@ # networking.interfaces.enp1s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; + hardware.cpu.intel.updateMicrocode = true; }