From 9558105d35176c2be7232a0be3790d39fc622f76 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 4 Jun 2023 10:34:59 -0400 Subject: [PATCH] Setup iperf on linux --- modules/linux/base.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/linux/base.nix b/modules/linux/base.nix index e92cbf5..164b72a 100644 --- a/modules/linux/base.nix +++ b/modules/linux/base.nix @@ -56,7 +56,11 @@ with lib; { options = "--delete-older-than 7d"; }; }; - + } + # iperf3 configuration + { + services.iperf3.enable = true; + environment.systemPackages = with pkgs; [ iperf ]; } ]; }