mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-22 17:32:19 +00:00
clean up ssh aliases
This commit is contained in:
parent
1a7a872c1c
commit
61d6f56435
1 changed files with 1 additions and 3 deletions
|
@ -7,8 +7,6 @@
|
||||||
jqless = "jq -C | less -r";
|
jqless = "jq -C | less -r";
|
||||||
k = "kubectl";
|
k = "kubectl";
|
||||||
n = "nix";
|
n = "nix";
|
||||||
scppass = "scp -o PubkeyAuthentication=no";
|
|
||||||
sshpass = "ssh -o PubkeyAuthentication=no";
|
|
||||||
tf = "terraform";
|
tf = "terraform";
|
||||||
tfyolo = "terraform apply -auto-approve";
|
tfyolo = "terraform apply -auto-approve";
|
||||||
vi = "vim";
|
vi = "vim";
|
||||||
|
@ -16,12 +14,12 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
shellAliases = {
|
shellAliases = {
|
||||||
ssh = "TERM=xterm ssh";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
functions = {
|
functions = {
|
||||||
# Disable greeting
|
# Disable greeting
|
||||||
fish_greeting = "";
|
fish_greeting = "";
|
||||||
|
ssh = "TERM=xterm command ssh $argv";
|
||||||
# Rebuild home-manager
|
# Rebuild home-manager
|
||||||
switch-home = "home-manager switch -b backup --flake ${config.home.homeDirectory}/.dotfiles#$USER@$(hostname -s)";
|
switch-home = "home-manager switch -b backup --flake ${config.home.homeDirectory}/.dotfiles#$USER@$(hostname -s)";
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue