14 lines
144 B
Nix
14 lines
144 B
Nix
|
|
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
# Network tools
|
|
dig
|
|
iftop
|
|
iperf
|
|
tcpdump
|
|
ethtool
|
|
traceroute
|
|
];
|
|
}
|
|
|