clean up ssh aliases

This commit is contained in:
John Bowdre 2023-08-04 10:28:43 -05:00
parent 1a7a872c1c
commit 61d6f56435

View file

@ -7,8 +7,6 @@
jqless = "jq -C | less -r";
k = "kubectl";
n = "nix";
scppass = "scp -o PubkeyAuthentication=no";
sshpass = "ssh -o PubkeyAuthentication=no";
tf = "terraform";
tfyolo = "terraform apply -auto-approve";
vi = "vim";
@ -16,12 +14,12 @@
};
shellAliases = {
ssh = "TERM=xterm ssh";
};
functions = {
# Disable greeting
fish_greeting = "";
ssh = "TERM=xterm command ssh $argv";
# Rebuild home-manager
switch-home = "home-manager switch -b backup --flake ${config.home.homeDirectory}/.dotfiles#$USER@$(hostname -s)";
};