about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorRaito Bezarius <masterancpp@gmail.com>2024-03-24 16:59:24 +0100
committerRaito Bezarius <masterancpp@gmail.com>2024-06-19 22:30:05 +0200
commit32a8884ba4f75a38916f82c34cac8ba09fbfab8d (patch)
tree40ecdf9e556a006ccea18fb96058fd75907496cc /nixos/tests
parent1cfb30fbdb49128a32aaae819b8ca9ea9fa28c99 (diff)
nixos/tests/netdata: use recommended python packages
To maximize the testing surface.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
Diffstat (limited to 'nixos/tests')
-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;
+          };
         };
     };