CrOS/hosts/common/optional/pentesting.nix

24 lines
367 B
Nix

{pkgs, ...}: {
programs = {
wireshark = {
enable = true;
usbmon.enable = true;
dumpcap.enable = true;
};
};
environment.systemPackages = with pkgs; [
metasploit
exploitdb
termshark
nmap
dirstalk
hashcat
trufflehog
python313
python313Packages.pyftdi
flashrom
sigrok-cli
pulseview
];
}