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