summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hermes/nixos/programs/cybersec.nix10
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
];