nixos-config/modules/security-tools.nix
2020-09-24 01:45:48 -04:00

27 lines
401 B
Nix

{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
exiftool
burpsuite
nmap
masscan
binutils
remmina
openvpn
socat
ghidra-bin
wfuzz
gobuster
dirb
pwndbg
thc-hydra
metasploit
(callPackage ../pkgs/binary-ninja-personal { })
];
programs = {
wireshark.enable = true;
wireshark.package = pkgs.wireshark;
};
}