feat: initialise nix shell environment

This commit is contained in:
Muhammad Nauman Raza 2024-07-15 22:06:20 +01:00
parent c95d6e0338
commit 750c5fc49b
Signed by: devraza
GPG key ID: 91EAD6081011574B

View file

@ -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
];
}