mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-12 02:04:09 -05:00
31 lines
505 B
Nix
31 lines
505 B
Nix
{pkgs, ...}: {
|
|
programs = {
|
|
wireshark = {
|
|
enable = true;
|
|
usbmon.enable = true;
|
|
dumpcap.enable = true;
|
|
};
|
|
};
|
|
|
|
services.postgresql.enable = true; # for msf
|
|
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit
|
|
(pkgs.unstable)
|
|
metasploit
|
|
exploitdb
|
|
termshark
|
|
nmap
|
|
dirstalk
|
|
hashcat
|
|
wordlists
|
|
trufflehog
|
|
python313
|
|
flashrom
|
|
sigrok-cli
|
|
pulseview
|
|
burpsuite
|
|
libxml2
|
|
;
|
|
};
|
|
}
|