23 lines
307 B
Nix
23 lines
307 B
Nix
{ inputs, config, pkgs, ... }: {
|
|
|
|
# Hacking specific packages.
|
|
home.packages = with pkgs; [
|
|
yara
|
|
nmap
|
|
john
|
|
ffuf
|
|
nikto
|
|
sqlmap
|
|
thc-hydra
|
|
exploitdb
|
|
feroxbuster
|
|
(wordlists.override {
|
|
lists = with pkgs; [
|
|
rockyou
|
|
seclists
|
|
];
|
|
})
|
|
];
|
|
|
|
}
|