From 10d5e0ecc32984c1bf1a9a46586be3451c42fd94 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Wed, 18 Sep 2024 20:58:24 -0300 Subject: [PATCH] asus-rog-strix-x570: add nct6775 kernel module for temperature and fan sensor --- asus/rog-strix/x570e/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/asus/rog-strix/x570e/default.nix b/asus/rog-strix/x570e/default.nix index d8ee657..0cd3655 100644 --- a/asus/rog-strix/x570e/default.nix +++ b/asus/rog-strix/x570e/default.nix @@ -9,6 +9,8 @@ ../../../common/pc/ssd ]; - # Bluetooth driver for Intel AX200 802.11ax - boot.kernelModules = [ "btintel" ]; + boot.kernelModules = [ + "btintel" # Bluetooth driver for Intel AX200 802.11ax + "nct6775" # Temperature and Fan Sensor for Nuvoton NCT6798D-R + ]; }