From c5f29c9bcb52b596ca1ac98bc003b23cbeafbab8 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Sun, 28 Mar 2021 02:52:09 -0400 Subject: [PATCH] whitespace --- modules/security-tools.nix | 78 +++++++++++++++++++------------------- 1 file changed, 39 insertions(+), 39 deletions(-) diff --git a/modules/security-tools.nix b/modules/security-tools.nix index 33e9b8b..c7a9a88 100644 --- a/modules/security-tools.nix +++ b/modules/security-tools.nix @@ -6,48 +6,48 @@ in options.sconfig.security-tools = lib.mkEnableOption "Enable security tools"; config = lib.mkIf cfg { - environment.systemPackages = with pkgs; [ - exiftool - burpsuite - nmap - masscan - binutils - remmina - openvpn - socat - ghidra-bin - wfuzz - gobuster - dirb - pwndbg - thc-hydra - metasploit + environment.systemPackages = with pkgs; [ + exiftool + burpsuite + nmap + masscan + binutils + remmina + openvpn + socat + ghidra-bin + wfuzz + gobuster + dirb + pwndbg + thc-hydra + metasploit - (callPackage ../pkgs/binary-ninja-personal { }) + (callPackage ../pkgs/binary-ninja-personal { }) - (writeShellScriptBin "searchsploit" '' - set -e - ( - cd ~/.cache - [ -e exploitdb ] || git clone https://github.com/offensive-security/exploitdb.git - cd exploitdb - if find .git -maxdepth 0 -cmin +60 | grep -q git - then - git pull - fi - ) - exec ~/.cache/exploitdb/searchsploit "$@" - '') - ]; + (writeShellScriptBin "searchsploit" '' + set -e + ( + cd ~/.cache + [ -e exploitdb ] || git clone https://github.com/offensive-security/exploitdb.git + cd exploitdb + if find .git -maxdepth 0 -cmin +60 | grep -q git + then + git pull + fi + ) + exec ~/.cache/exploitdb/searchsploit "$@" + '') + ]; - programs = { - wireshark.enable = true; - wireshark.package = pkgs.wireshark; - }; + programs = { + wireshark.enable = true; + wireshark.package = pkgs.wireshark; + }; - users.users.sandy = { - isNormalUser = true; - isSystemUser = true; - }; + users.users.sandy = { + isNormalUser = true; + isSystemUser = true; + }; }; }