Working version of ilo fan control script

This commit is contained in:
2025-12-30 23:09:14 -08:00
parent 434d760397
commit c5b0bad486
17 changed files with 141 additions and 99 deletions

View File

@@ -0,0 +1,13 @@
{ config, pkgs, ... }:
{
sops.secrets = {
"ssh/ilouser/id_rsa" = {
sopsFile = ../../secrets/default.yaml;
path = "/root/.ssh/ilo_id_rsa";
};
"ssh/ilouser/id_rsa_pub" = {
sopsFile = ../../secrets/default.yaml;
path = "/root/.ssh/ilo_id_rsa.pub";
};
};
}