dotfiles/home/modules/networking.nix

15 lines
158 B
Nix

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