From bbba4071d531225a46da94322a94666431286a77 Mon Sep 17 00:00:00 2001 From: Martin Date: Wed, 18 Mar 2026 22:54:24 +0100 Subject: [PATCH] fix(bazzite): add wifi warning (issue #10), update SMU governor note, sensor info - Add warning that performance mode rebase can kill WiFi drivers (issue #10) - Update SMU governor from "emerging" to established alternative - Add nct6683 alternative for sensor module (per mothenjoyer69's docs) - Note both nct6687 (PWM control) and nct6683 (read-only) options --- docs/linux/bazzite.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/docs/linux/bazzite.md b/docs/linux/bazzite.md index 93e5a26..fcf0857 100644 --- a/docs/linux/bazzite.md +++ b/docs/linux/bazzite.md @@ -239,10 +239,16 @@ systemctl reboot ### Temperature Sensors -Enable NCT6687 module for PWM fan control: +Enable sensor module for temperature and fan control: ```bash +# For PWM fan control (CoolerControl compatible): echo 'nct6687' | sudo tee /etc/modules-load.d/nct6687.conf + +# Alternative: nct6683 with force (read-only sensors, per mothenjoyer69's docs): +# echo 'nct6683' | sudo tee /etc/modules-load.d/nct6683.conf +# echo 'options nct6683 force=true' | sudo tee /etc/modprobe.d/sensors.conf + systemctl reboot ``` @@ -250,7 +256,7 @@ Verify: ```bash sensors -# Should show nct6687-isa-0a20 with GPU temp, fan speeds +# Should show nct6687-isa-0a20 (or nct6683-isa-0a20) with GPU temp, fan speeds ``` ### CoolerControl (Optional)