8 lines
164 B
Nix
8 lines
164 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
rizin
|
|
ghidra-bin
|
|
(security-wordlists.withLists(ps: with ps; [ dirbuster rockyou ]))
|
|
];
|
|
}
|