summaryrefslogtreecommitdiff
path: root/home/ebisu/fortune/networking/tools/default.nix
blob: b694fefcc6efa0e22827de8049f8de3a9f3f0e77 (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
27
28
{ pkgs, inputs, ... }:
{
  imports = [
    ./http
    ./dns.nix
    ./scanning.nix
    ./shark.nix
  ];

  home.packages = with pkgs; [
    lftp
    pwru
    bmon
    netcat-openbsd
    nethogs
    inetutils
    speedtest-cli
    traceroute
    iptraf-ng
    tcpdump
    inputs.tsutsumi.packages.${pkgs.system}.bindtointerface
    trayscale
    bandwhich
    bore-cli
    hcloud
    gping
  ];
}