From 4766eff7d30be3809f3248a44bccd5204b55aef7 Mon Sep 17 00:00:00 2001 From: Petru Paler Date: Sun, 15 Sep 2024 18:54:19 +0100 Subject: [PATCH] Load sensors modules. --- hosts/zippy/hardware.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/zippy/hardware.nix b/hosts/zippy/hardware.nix index 8d2ad5c..993b2ce 100644 --- a/hosts/zippy/hardware.nix +++ b/hosts/zippy/hardware.nix @@ -18,7 +18,11 @@ "sd_mod" ]; boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ "kvm-intel" ]; + boot.kernelModules = [ + "kvm-intel" + "coretemp" + "nct6775" + ]; boot.extraModulePackages = [ ]; nixpkgs.hostPlatform = "x86_64-linux";