35707279b4
note that this is read-only. the nct6683d did not work
8 lines
172 B
Nix
8 lines
172 B
Nix
{pkgs, ...}: {
|
|
# fan setup
|
|
programs.coolercontrol.enable = true;
|
|
boot.kernelModules = ["nct6683"];
|
|
boot.extraModprobeConfig = ''
|
|
options nct6683 force=1
|
|
'';
|
|
} |