ooknet/inputs/system/modules/base/networking/tools.nix

14 lines
183 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
traceroute
mtr
tcpdump
];
programs = {
wireshark.enable = true;
bandwhich.enable = true;
};
}