From 3c4ebe16871016e050e9a0ee626273fad2f7f4e4 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 14:12:16 +0100 Subject: [PATCH] srv-core: Explicitly enable sensor kernel modules --- hosts/srv-core/hardware.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index fc86ee3..51669b4 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -5,7 +5,11 @@ nixpkgs.hostPlatform = "x86_64-linux"; boot = { - kernelModules = [ "kvm-intel" ]; + kernelModules = [ + "kvm-intel" + "k10temp" + "nct6775" + ]; initrd.availableKernelModules = [ "xhci_pci" "ahci"