commit 566df3c3f3b9a2eff7d8d743cb5d210fcaefc516 Author: sinavir Date: Sat Jan 24 00:21:10 2026 +0100 init shell diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..43147b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/serve/config.txt diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..c3d10c9 --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +{ pkgs ? import {} }: +pkgs.mkShell { + name = "junos-testing"; + packages = [ + (pkgs.python3.withPackages (p: [ + p.scapy + p.tqdm + p.ipython + p.libpcap + ])) + ]; +}