29 lines
365 B
Nix
29 lines
365 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
# ICMP / reachability
|
|
iputils # ping, tracepath, arping
|
|
mtr
|
|
traceroute
|
|
|
|
# HTTP / TCP probes
|
|
curl
|
|
httpie
|
|
netcat-openbsd
|
|
socat
|
|
|
|
# DNS
|
|
dnsutils # dig, nslookup, host
|
|
whois
|
|
|
|
# Throughput / interface
|
|
iperf3
|
|
ethtool
|
|
nmap
|
|
|
|
# SMTP testing
|
|
swaks
|
|
];
|
|
}
|