Added several hacking tools to nix common packages list

This commit is contained in:
Random936 2024-06-07 21:50:19 -07:00
parent 98681f02d5
commit a056559329

View File

@ -3,7 +3,7 @@
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
fonts.fontconfig.enable = true; fonts.fontconfig.enable = true;
home.packages = (with pkgs; [ home.packages = with pkgs; [
# Utilities # Utilities
tmux tmux
btop btop
@ -11,6 +11,7 @@
p7zip p7zip
ripgrep ripgrep
neofetch neofetch
bitwarden-cli
# Dev tools # Dev tools
clang clang
@ -18,9 +19,23 @@
python3 python3
gnumake gnumake
# Other # Hacking
bitwarden-cli nmap
]); john
ffuf
nikto
sqlmap
wpscan
thc-hydra
exploitdb
feroxbuster
(wordlists.override {
lists = with pkgs; [
rockyou
seclists
];
})
];
programs = { programs = {
home-manager.enable = true; home-manager.enable = true;