From 33488d8073d5f718264c8140a4073f7916afd5d6 Mon Sep 17 00:00:00 2001 From: sinavir Date: Sat, 24 Jan 2026 00:21:10 +0100 Subject: [PATCH] init shell --- .gitignore | 2 ++ shell.nix | 12 ++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 shell.nix 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 + ])) + ]; +}