feat(kali): Initial commit

This commit is contained in:
Tibo De Peuter 2025-11-23 15:28:42 +01:00
parent ac314e30f6
commit 17514f73bc
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 93 additions and 0 deletions

32
kali/flake.nix Normal file
View 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
];
};
});
}