dotfiles/home/modules/networking.nix
2025-02-27 13:23:35 -08:00

15 lines
155 B
Nix

{ pkgs, ... }: {
home.packages = with pkgs; [
# Network tools
dig
iftop
iperf
tshark
tcpdump
ethtool
traceroute
];
}