From 79571cd59f1bcb4839c73d7c62bd1ee698ff09a8 Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 5 Jul 2023 21:26:30 +0900 Subject: [PATCH] test --- services/telegraf.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/services/telegraf.nix b/services/telegraf.nix index 253cde10..2e9c100a 100644 --- a/services/telegraf.nix +++ b/services/telegraf.nix @@ -11,15 +11,16 @@ environment.systemPackages = with pkgs; [ lm_sensors telegraf + smartmontools ]; # Allow telegraf to talk to other executables it requires: systemd.services.telegraf = { path = with pkgs; [ - lm_sensors - fail2ban - # nvidia-smi - linuxPackages.nvidia_x11 + lm_sensors # sensors + fail2ban # fail2ban-client + linuxPackages.nvidia_x11 # nvidia-smi + smartmontools # smartctl ]; };