26 lines
376 B
Nix
26 lines
376 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {
|
|
group.hacking.enable = lib.mkEnableOption "enable Hacking module";
|
|
};
|
|
|
|
config = lib.mkIf config.group.hacking.enable {
|
|
home.packages = with pkgs; [
|
|
ffuf
|
|
wireshark
|
|
termshark
|
|
nmap
|
|
netcat-openbsd
|
|
bettercap
|
|
hashcat
|
|
tcpdump
|
|
sqlmap
|
|
tor-browser
|
|
];
|
|
};
|
|
}
|