Files
nixos/modules/nixos/asrock-a620i.nix
T
kenji 35707279b4 fix(asrock): spacing for nct
note that this is read-only. the nct6683d did not work
2026-03-08 10:15:07 -05:00

8 lines
172 B
Nix

{pkgs, ...}: {
# fan setup
programs.coolercontrol.enable = true;
boot.kernelModules = ["nct6683"];
boot.extraModprobeConfig = ''
options nct6683 force=1
'';
}