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

View File

@@ -132,6 +132,12 @@
inputs.nixpkgs.follows = "pi4-nixpkgs";
};
pi4-argononed = {
url = "gitlab:ykis-0-0/argononed/feat/nixos";
flake = false;
};
#####################################################
# Steamdeck #
#####################################################
@@ -236,6 +242,7 @@
# Pi4
pi4-nixpkgs,
pi4-argononed,
pi4-home-manager,
pi4-impermanence,
pi4-nixos-hardware,

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