summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/network/tools/default.nix
blob: 6b32efc8001af3dabfd4a1a4054f2664fe08265b (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
{ 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
  ];
}