This commit is contained in:
Hadi
2025-09-24 17:20:03 +02:00
commit b9fbed9a54
83 changed files with 6241 additions and 0 deletions

12
nix/devshell.nix Normal file
View File

@@ -0,0 +1,12 @@
{pkgs, ...}: {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
duckdb
air
# OSINT tools
ghunt
sherlock
holehe
];
};
}