CrOS/hosts/common/optional/pentesting.nix
2025-07-28 16:16:37 -04:00

26 lines
402 B
Nix

{pkgs, ...}: {
programs = {
wireshark = {
enable = true;
usbmon.enable = true;
dumpcap.enable = true;
};
};
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
metasploit
exploitdb
termshark
nmap
dirstalk
hashcat
trufflehog
python313
flashrom
sigrok-cli
pulseview
;
};
}