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
This commit is contained in:
Martin
2026-03-18 22:54:24 +01:00
parent 0532012a85
commit bbba4071d5

View File

@@ -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)