add(asrock-a620i): new setup for testing fan

by default, system does not automatically detect fan configuration for
chassis and the cpu. quite inconvenient to setup fan speeds
This commit is contained in:
kenji
2026-03-08 08:48:01 -05:00
parent ae3a43d25d
commit 4fb3325326
2 changed files with 9 additions and 0 deletions
+1
View File
@@ -1,5 +1,6 @@
{
imports = [
../../apps/qmk
./asrock-a620i.nix
];
}
+8
View File
@@ -0,0 +1,8 @@
{pkgs, ...}: {
# fan setup
programs.coolercontrol.enable = true;
boot.kernelModules = ["nct6683"];
boot.extraModprobeConfig = ''
options nct 6683 force=1
'';
}