summaryrefslogtreecommitdiff
path: root/modules/home/re.nix
diff options
context:
space:
mode:
authorChristian <[email protected]>2026-05-24 08:19:35 -0500
committerChristian <[email protected]>2026-05-24 08:19:35 -0500
commitf72d9c4e9f4530b31aef6cfb3664deed324e935e (patch)
tree428a8253099b4133e58fa2e0df3bb2cee773eacc /modules/home/re.nix
parentb80ee5e82cee71dd4eb77d6a5f421856304fb34a (diff)
Add reverse engineering module with ghidra, binaryninja, and ilspy
Diffstat (limited to 'modules/home/re.nix')
-rw-r--r--modules/home/re.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/home/re.nix b/modules/home/re.nix
new file mode 100644
index 0000000..9093b12
--- /dev/null
+++ b/modules/home/re.nix
@@ -0,0 +1,13 @@
+{
+ config,
+ pkgs,
+ inputs,
+ ...
+}:
+{
+ home.packages = with pkgs; [
+ binaryninja-free
+ avalonia-ilspy
+ ghidra
+ ];
+}