summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/network/tools/default.nix
blob: 30aa4b59e1995e79a63fd52383d67cfa144ee0f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ pkgs, ... }:
{
  imports = [
    ./http
    ./shark.nix
  ];

  home.packages = with pkgs; [
    lftp
    dnsutils
    pwru
    bmon
    netcat-openbsd
    nethogs
    inetutils
    whois
    speedtest-cli
    traceroute
    iptraf-ng
    tcpdump
    (pkgs.callPackage ../../../../../pkgs/bindtointerface.nix { })
  ];
}