dotfiles/home/modules/networking.nix
2025-02-09 10:47:35 -08:00

14 lines
144 B
Nix

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