diff options
| author | Leonardo <noreply@leoflo.me> | 2025-11-16 10:42:28 +0100 |
|---|---|---|
| committer | Leonardo <noreply@leoflo.me> | 2025-11-16 10:42:28 +0100 |
| commit | 0f44b26a3e2a459690b940ac489d70920dd49e47 (patch) | |
| tree | 52d079712284e56df9171c56d40ab42ba241a992 /hermes | |
| parent | a4cacab50352bb3705e6a2963a2ce953d29f8a20 (diff) | |
| download | nixos-0f44b26a3e2a459690b940ac489d70920dd49e47.tar.gz nixos-0f44b26a3e2a459690b940ac489d70920dd49e47.zip | |
cutter with plugins
Diffstat (limited to 'hermes')
| -rw-r--r-- | hermes/nixos/programs/cybersec.nix | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/hermes/nixos/programs/cybersec.nix b/hermes/nixos/programs/cybersec.nix index e4359a8..c96a7ad 100644 --- a/hermes/nixos/programs/cybersec.nix +++ b/hermes/nixos/programs/cybersec.nix @@ -1,12 +1,16 @@ -{lib, config, pkgs, ...}: { +{lib, config, pkgs, ...}: + let + rizin = pkgs.rizin.withPlugins(ps: with ps; [ jsdec rz-ghidra sigdb ]); + cutter = pkgs.cutter.withPlugins(ps: with ps; [ rz-ghidra ]); + in { options.cybersec.enable = lib.mkEnableOption "cybersecurity tooling"; config = lib.mkIf config.cybersec.enable { # Packages environment.systemPackages = with pkgs; [ ascii file binwalk codeql pwntools - gnat15 python313 gdb gef - ghidra-bin cutter cutterPlugins.rz-ghidra + gnat15 python313 gdb gef rizin + ghidra-bin cutter dig wireshark-qt postman burpsuite ]; |
