CrOS/hosts/common/optional/pentesting.nix
2025-07-19 16:09:44 -04:00

22 lines
338 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
];
}