mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
28 lines
434 B
Nix
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
|
|
;
|
|
};
|
|
}
|