From 54c4b7330164d8929991c1d9e2c6991632e1af52 Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 5 Jul 2023 21:24:39 +0900 Subject: [PATCH] test --- services/openssh.nix | 2 +- services/telegraf.nix | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/services/openssh.nix b/services/openssh.nix index b0d54f20..587d75a0 100644 --- a/services/openssh.nix +++ b/services/openssh.nix @@ -44,7 +44,7 @@ and work product are private and confidential. See User Agreement for details. - -- + -- ''; }; diff --git a/services/telegraf.nix b/services/telegraf.nix index 7c935348..253cde10 100644 --- a/services/telegraf.nix +++ b/services/telegraf.nix @@ -11,13 +11,15 @@ environment.systemPackages = with pkgs; [ lm_sensors telegraf - fail2ban ]; + # Allow telegraf to talk to other executables it requires: systemd.services.telegraf = { path = with pkgs; [ lm_sensors fail2ban + # nvidia-smi + linuxPackages.nvidia_x11 ]; };