about summary refs log tree commit diff
path: root/nixos/tests/netdata.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/tests/netdata.nix')
-rw-r--r--nixos/tests/netdata.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/nixos/tests/netdata.nix b/nixos/tests/netdata.nix
index e3438f63404e7..df4d342905c68 100644
--- a/nixos/tests/netdata.nix
+++ b/nixos/tests/netdata.nix
@@ -11,7 +11,10 @@ import ./make-test-python.nix ({ pkgs, ...} : {
       { pkgs, ... }:
         {
           environment.systemPackages = with pkgs; [ curl jq netdata ];
-          services.netdata.enable = true;
+          services.netdata = {
+            enable = true;
+            python.recommendedPythonPackages = true;
+          };
         };
     };