nixos-config/nixos/home/apps/hacking.nix
2025-01-29 16:10:52 +01:00

30 lines
447 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
termshark
nmap
netcat-openbsd
bettercap
burpsuite
hashcat
tcpdump
sqlmap
tor-browser
android-udev-rules
postman
gdb
];
};
}