CrOS/hosts/common/optional/pentesting.nix
2025-06-25 10:32:02 -04:00

18 lines
267 B
Nix

{pkgs, ...}: {
programs = {
wireshark = {
enable = true;
usbmon.enable = true;
dumpcap.enable = true;
};
};
environment.systemPackages = with pkgs; [
metasploit
exploitdb
termshark
nmap
dirstalk
hashcat
];
}