diff options
| author | Fuwn <[email protected]> | 2024-09-17 15:16:35 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-17 15:16:35 -0700 |
| commit | 3baa13a3e4c8c32a91bcd2efa2dcddfb46086296 (patch) | |
| tree | edca2cd1a7eeef89e3213c493a3884063b4f7aab /home/ebisu | |
| parent | networking: add bore (diff) | |
| download | nixos-config-3baa13a3e4c8c32a91bcd2efa2dcddfb46086296.tar.xz nixos-config-3baa13a3e4c8c32a91bcd2efa2dcddfb46086296.zip | |
networking: scanning module
Diffstat (limited to 'home/ebisu')
| -rw-r--r-- | home/ebisu/fortune/networking/tools/default.nix | 4 | ||||
| -rw-r--r-- | home/ebisu/fortune/networking/tools/scanning.nix | 8 |
2 files changed, 9 insertions, 3 deletions
diff --git a/home/ebisu/fortune/networking/tools/default.nix b/home/ebisu/fortune/networking/tools/default.nix index 7550ea8..ea07cc3 100644 --- a/home/ebisu/fortune/networking/tools/default.nix +++ b/home/ebisu/fortune/networking/tools/default.nix @@ -3,6 +3,7 @@ imports = [ ./http ./dns.nix + ./scanning.nix ./shark.nix ]; @@ -19,10 +20,7 @@ tcpdump inputs.tsutsumi.packages.${pkgs.system}.bindtointerface trayscale - nmap bandwhich - rustscan - arp-scan bore-cli ]; } diff --git a/home/ebisu/fortune/networking/tools/scanning.nix b/home/ebisu/fortune/networking/tools/scanning.nix new file mode 100644 index 0000000..fe9c1fa --- /dev/null +++ b/home/ebisu/fortune/networking/tools/scanning.nix @@ -0,0 +1,8 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + nmap + rustscan + arp-scan + ]; +} |