From 750c5fc49b0e2d605ff3874dbbc3efdbbc75b70e Mon Sep 17 00:00:00 2001 From: Muhammad Nauman Raza Date: Mon, 15 Jul 2024 22:06:20 +0100 Subject: [PATCH] feat: initialise nix shell environment --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/shell.nix b/shell.nix index e69de29..439ef82 100644 --- a/shell.nix +++ b/shell.nix @@ -0,0 +1,11 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in +pkgs.mkShellNoCC { + packages = with pkgs; [ + hping + tcpdump + netcat + ]; +}