Added binary ninja personal to repo

This commit is contained in:
Random936
2025-10-27 21:44:10 -04:00
parent b8459f1967
commit f36f414f51
5 changed files with 109 additions and 4 deletions

View File

@@ -1,10 +1,11 @@
{ lib, config, pkgs, ... }: {
{ lib, config, pkgs, ... }: let
mypkgs = import ../../packages/all-packages.nix { inherit pkgs lib config; };
in {
# Hacking specific packages.
home.packages = (with pkgs; [
gdb
yara
nmap
#john
ffuf
amass
nikto
@@ -35,6 +36,8 @@
seclists
];
})
]) ++ (with mypkgs; [
binaryninja
]);
}