feat: initialise nix shell environment
This commit is contained in:
parent
c95d6e0338
commit
750c5fc49b
1 changed files with 11 additions and 0 deletions
11
shell.nix
11
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
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue