commit 33488d8073d5f718264c8140a4073f7916afd5d6 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..d588798 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/serve/config.txt +/logs 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 + ])) + ]; +}