From 3c4ebe16871016e050e9a0ee626273fad2f7f4e4 Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 14:12:16 +0100 Subject: [PATCH 1/2] 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" From 730c58eaa04252313a3f14fdee04350610db478b Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Mon, 9 Mar 2026 14:56:37 +0100 Subject: [PATCH 2/2] srv-core: Fix sensor kernel modules --- hosts/srv-core/hardware.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/srv-core/hardware.nix b/hosts/srv-core/hardware.nix index 51669b4..94aca3a 100644 --- a/hosts/srv-core/hardware.nix +++ b/hosts/srv-core/hardware.nix @@ -7,8 +7,8 @@ boot = { kernelModules = [ "kvm-intel" - "k10temp" - "nct6775" + "coretemp" + "it87" ]; initrd.availableKernelModules = [ "xhci_pci"