24 lines
287 B
Nix
24 lines
287 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
mtr.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# keep-sorted start
|
|
aria2
|
|
curl
|
|
dnsutils
|
|
ethtool
|
|
ipcalc
|
|
iperf3
|
|
knot-dns
|
|
nmap
|
|
rsync
|
|
socat
|
|
tcpdump
|
|
wget
|
|
# keep-sorted end
|
|
];
|
|
}
|