First commit

This commit is contained in:
2025-11-21 21:33:29 +02:00
commit 8261b4bc35
10 changed files with 184 additions and 0 deletions

9
shell.nix Normal file
View File

@@ -0,0 +1,9 @@
with (import <nixpkgs> {});
mkShell {
buildInputs = with pkgs; [
bpftrace
tcpdump
conntrack-tools
];
shellHook = "";
}