CrOS/hosts/common/optional/pentesting.nix
TheWanderingCrow 77bbf9ae76 git stuff
2025-08-19 10:36:27 -04:00

28 lines
434 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
burpsuite
;
};
}