argononed

This commit is contained in:
mjallen18
2025-03-21 23:46:41 -05:00
parent f03119cc4f
commit 3352ce9e0d
3 changed files with 23 additions and 0 deletions

15
hosts/pi4/argononed.nix Normal file
View File

@@ -0,0 +1,15 @@
{ argononed, ... }:
{
imports = [ "${argononed}/OS/nixos" ];
services.argonone = {
enable = true;
logLevel = 4;
settings = {
fanTemp0 = 36; fanSpeed0 = 10;
fanTemp1 = 41; fanSpeed1 = 50;
fanTemp2 = 46; fanSpeed2 = 80;
hysteresis = 4;
};
};
}

View File

@@ -17,6 +17,7 @@ in
imports = [
# Include the results of the hardware scan.
./adguard.nix
./argononed.nix
./boot.nix
./hardware-configuration.nix
./impermanence.nix