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