feat(kali): Initial commit
This commit is contained in:
parent
ac314e30f6
commit
17514f73bc
2 changed files with 93 additions and 0 deletions
32
kali/flake.nix
Normal file
32
kali/flake.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
description = ''
|
||||
'';
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, flake-utils }:
|
||||
flake-utils.lib.eachDefaultSystem (system:
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
in {
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
ghidra-bin
|
||||
ltrace
|
||||
nikto
|
||||
nmap
|
||||
smbclient-ng
|
||||
strace
|
||||
|
||||
steam-run
|
||||
];
|
||||
};
|
||||
});
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue