{ 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 hash-identifier john ltrace metasploit nikto nmap smbclient-ng strace thc-hydra (wordlists.override { lists = with pkgs; [ rockyou ]; }) steam-run ]; }; }); }