mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
52 lines
982 B
Nix
52 lines
982 B
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
|
|
cfg = config.sconfig.security-tools;
|
|
|
|
in
|
|
{
|
|
options.sconfig.security-tools = lib.mkEnableOption "Enable security tools";
|
|
|
|
config = lib.mkIf cfg {
|
|
environment.systemPackages = with pkgs; [
|
|
binutils
|
|
burpsuite
|
|
exiftool
|
|
feroxbuster
|
|
ghidra
|
|
masscan
|
|
metasploit
|
|
msfpc
|
|
nmap
|
|
openvpn
|
|
remmina
|
|
seclists
|
|
socat
|
|
thc-hydra
|
|
webshells
|
|
weevely
|
|
wfuzz
|
|
|
|
(runCommand "gdb" { } "install -D ${gef}/bin/gef $out/bin/gdb")
|
|
];
|
|
|
|
programs.bash.interactiveShellInit = ''
|
|
alias feroxbuster="feroxbuster --no-state"
|
|
'';
|
|
|
|
system.activationScripts.seclists = ''
|
|
mkdir -m 0755 -p /usr/share
|
|
ln -sf /run/current-system/sw/share/seclists /usr/share/
|
|
'';
|
|
|
|
networking.firewall.allowedTCPPorts = [
|
|
8000
|
|
9999
|
|
];
|
|
|
|
programs = {
|
|
wireshark.enable = true;
|
|
wireshark.package = pkgs.wireshark;
|
|
};
|
|
};
|
|
}
|