1
0
Fork 0

init shell

This commit is contained in:
Maurice Debray 2026-01-24 00:21:10 +01:00
commit 33488d8073
2 changed files with 14 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/serve/config.txt
/logs

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
name = "junos-testing";
packages = [
(pkgs.python3.withPackages (p: [
p.scapy
p.tqdm
p.ipython
p.libpcap
]))
];
}