13 lines
171 B
Nix
13 lines
171 B
Nix
{pkgs, ...}: {
|
|
devShell = pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
duckdb
|
|
air
|
|
# OSINT tools
|
|
ghunt
|
|
sherlock
|
|
holehe
|
|
];
|
|
};
|
|
}
|