about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/netdata.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-07-24 16:12:07 -0500
committerGitHub <noreply@github.com>2022-07-24 16:12:07 -0500
commitf97827178ed0a9e1ef4a24a4b91f216db4f198d1 (patch)
tree81f7efa3abc26f033d46d45b8d532749219001b9 /nixos/modules/services/monitoring/netdata.nix
parenta419ebeee7299f39c2c42e376e81e9fdd6c19360 (diff)
parentef6d6d4c4ae396b9cd4b3a7cb9d61067ff5dcb11 (diff)
downloadnixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar.gz
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar.bz2
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar.lz
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar.xz
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.tar.zst
nixlib-f97827178ed0a9e1ef4a24a4b91f216db4f198d1.zip
Merge pull request #181021 from melvyn2/patch-1
Add `bash` to netdata service path
Diffstat (limited to 'nixos/modules/services/monitoring/netdata.nix')
-rw-r--r--nixos/modules/services/monitoring/netdata.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/netdata.nix b/nixos/modules/services/monitoring/netdata.nix
index 03a76cab9f5e..baf869af1c42 100644
--- a/nixos/modules/services/monitoring/netdata.nix
+++ b/nixos/modules/services/monitoring/netdata.nix
@@ -186,7 +186,7 @@ in {
       description = "Real time performance monitoring";
       after = [ "network.target" ];
       wantedBy = [ "multi-user.target" ];
-      path = (with pkgs; [ curl gawk iproute2 which procps ])
+      path = (with pkgs; [ curl gawk iproute2 which procps bash ])
         ++ lib.optional cfg.python.enable (pkgs.python3.withPackages cfg.python.extraPackages)
         ++ lib.optional config.virtualisation.libvirtd.enable (config.virtualisation.libvirtd.package);
       environment = {