Files
eleakxir/nix/devshell.nix
2025-09-24 17:20:03 +02:00

13 lines
171 B
Nix

{pkgs, ...}: {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
duckdb
air
# OSINT tools
ghunt
sherlock
holehe
];
};
}