summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/network/tools/default.nix
blob: 6135a8215943232f0463c091ffa771dca0a79f2f (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
24
25
26
{ 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 { })
    trayscale
    nmap
    bandwhich
  ];
}