1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

nixos/tests/netdata: use recommended python packages

To maximize the testing surface.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
Raito Bezarius 2024-03-24 16:59:24 +01:00
parent 1cfb30fbdb
commit 32a8884ba4

View file

@ -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;
};
};
};