Setup iperf on linux

This commit is contained in:
Nathan McCarty 2023-06-04 10:34:59 -04:00
parent 04a4ad2eac
commit 9558105d35
Signed by: thatonelutenist
SSH Key Fingerprint: SHA256:hwQEcmak9E6sdU9bXc98RHw/Xd1AhpB5HZT7ZSVJkRM
1 changed files with 5 additions and 1 deletions

View File

@ -56,7 +56,11 @@ with lib; {
options = "--delete-older-than 7d";
};
};
}
# iperf3 configuration
{
services.iperf3.enable = true;
environment.systemPackages = with pkgs; [ iperf ];
}
];
}