Files
nixos-config/modules/home/diagnostic-tools.nix
2026-06-02 11:26:57 +02:00

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