This commit is contained in:
iFargle 2023-07-05 21:24:39 +09:00
parent 27ff78cbef
commit 54c4b73301
2 changed files with 4 additions and 2 deletions

View file

@ -44,7 +44,7 @@
and work product are private and confidential. See User and work product are private and confidential. See User
Agreement for details. Agreement for details.
-- --
''; '';
}; };

View file

@ -11,13 +11,15 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
lm_sensors lm_sensors
telegraf telegraf
fail2ban
]; ];
# Allow telegraf to talk to other executables it requires:
systemd.services.telegraf = { systemd.services.telegraf = {
path = with pkgs; [ path = with pkgs; [
lm_sensors lm_sensors
fail2ban fail2ban
# nvidia-smi
linuxPackages.nvidia_x11
]; ];
}; };