dotfiles/home/hacking.nix
2024-08-07 20:34:20 -07:00

32 lines
426 B
Nix

{ inputs, config, pkgs, ... }: {
# Hacking specific packages.
home.packages = with pkgs; [
yara
nmap
john
ffuf
amass
nikto
sqlmap
wpscan
openssl
remmina
inetutils
thc-hydra
exploitdb
responder
burpsuite
evil-winrm
feroxbuster
crackmapexec
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
];
}