From a0565593299e00c5ea8d8cfb468feb10f8ad0ee8 Mon Sep 17 00:00:00 2001 From: Random936 Date: Fri, 7 Jun 2024 21:50:19 -0700 Subject: [PATCH] Added several hacking tools to nix common packages list --- home-manager/common.nix | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/home-manager/common.nix b/home-manager/common.nix index 413cf89..fcfbbff 100644 --- a/home-manager/common.nix +++ b/home-manager/common.nix @@ -3,7 +3,7 @@ nixpkgs.config.allowUnfree = true; fonts.fontconfig.enable = true; - home.packages = (with pkgs; [ + home.packages = with pkgs; [ # Utilities tmux btop @@ -11,6 +11,7 @@ p7zip ripgrep neofetch + bitwarden-cli # Dev tools clang @@ -18,9 +19,23 @@ python3 gnumake - # Other - bitwarden-cli - ]); + # Hacking + nmap + john + ffuf + nikto + sqlmap + wpscan + thc-hydra + exploitdb + feroxbuster + (wordlists.override { + lists = with pkgs; [ + rockyou + seclists + ]; + }) + ]; programs = { home-manager.enable = true;