Added zsh ssh term fix and hacking packages

This commit is contained in:
Random936 2025-02-09 09:57:02 -08:00
parent ecd9492881
commit deb4233b93
2 changed files with 7 additions and 0 deletions

View File

@ -8,6 +8,7 @@
ffuf ffuf
amass amass
nikto nikto
samba
nuclei nuclei
rlwrap rlwrap
sqlmap sqlmap

View File

@ -26,7 +26,9 @@
r330-proxmox = "ssh root@192.168.100.21"; r330-proxmox = "ssh root@192.168.100.21";
r730xd-proxmox = "ssh root@192.168.100.22"; r730xd-proxmox = "ssh root@192.168.100.22";
r330-media = "ssh media@192.168.100.40"; r330-media = "ssh media@192.168.100.40";
r330-logging = "ssh logging@192.168.100.41";
sampledb-dev = "ssh sampledb@192.168.100.42"; sampledb-dev = "ssh sampledb@192.168.100.42";
mindforge = "ssh mindforge@mindforge.randomctf.local";
# Nix Specific aliases # Nix Specific aliases
update-darwin = "darwin-rebuild switch --flake ~/dotfiles"; update-darwin = "darwin-rebuild switch --flake ~/dotfiles";
@ -51,6 +53,10 @@
if [[ "$(uname)" == "Darwin" ]]; then if [[ "$(uname)" == "Darwin" ]]; then
source <(/opt/homebrew/bin/brew shellenv) source <(/opt/homebrew/bin/brew shellenv)
fi fi
if [[ -n "$SSH_CONNECTION" && "$TERM" == "ghostty" ]]; then
export TERM="xterm-256color"
fi
''; '';
plugins = [ plugins = [