nixos-config/nixos/home/apps/hacking.nix

34 lines
490 B
Nix

{
lib,
pkgs,
config,
...
}: {
options = {
app_list.hacking.enable = lib.mkEnableOption "enable Hacking module";
};
config = lib.mkIf config.app_list.hacking.enable {
home.packages = with pkgs; [
ffuf
wireshark
whois
termshark
nmap
netcat-openbsd
bettercap
burpsuite
zap
hashcat
tcpdump
sqlmap
tor-browser
android-udev-rules
postman
bruno
gdb
xh
];
};
}