nixos-config/modules/security-tools.nix

15 lines
376 B
Nix
Raw Normal View History

2020-09-18 13:54:09 +00:00
{ 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;
};
}