mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
25 lines
348 B
Nix
25 lines
348 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
exiftool
|
|
burpsuite
|
|
nmap
|
|
masscan
|
|
binutils
|
|
remmina
|
|
openvpn
|
|
socat
|
|
ghidra-bin
|
|
wfuzz
|
|
gobuster
|
|
dirb
|
|
pwndbg
|
|
thc-hydra
|
|
metasploit
|
|
];
|
|
|
|
programs = {
|
|
wireshark.enable = true;
|
|
wireshark.package = pkgs.wireshark;
|
|
};
|
|
}
|