CrOS/hosts/common/optional/pentesting.nix
TheWanderingCrow 64b56fc6fb wordlists
2025-08-07 15:13:24 -04:00

27 lines
418 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
wordlists
trufflehog
python313
flashrom
sigrok-cli
pulseview
;
};
}