Compare commits

..

No commits in common. "51b9590574649601c971ffa5d56287c998e6d156" and "39bc189b6883ca8ef18564ece6d7b3c9812a31a6" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -12,7 +12,6 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
babelfish # Lets fish speak bash babelfish # Lets fish speak bash
bottom # Prettier top bottom # Prettier top
dig # DNS lookup
gh # Github CLI gh # Github CLI
httpie # Better curl httpie # Better curl
jq # JSON pretty printer and manipulator jq # JSON pretty printer and manipulator

View file

@ -10,11 +10,10 @@ in
shellAbbrs = rec { shellAbbrs = rec {
ccat = "egrep -v '^\s*(#|$)'"; ccat = "egrep -v '^\s*(#|$)'";
g = "git";
ga = "git add"; ga = "git add";
gc = "git commit"; # interactive commit gc = "git commit"; # interactive commit
gcm = "git commit -m"; # quick commit
gg = "git graph"; gg = "git graph";
gcm = "git commit -m"; # quick commit
gs = "git status"; gs = "git status";
jqless = "jq -C | less -r"; jqless = "jq -C | less -r";
k = mkIf hasKubectl "kubectl"; k = mkIf hasKubectl "kubectl";
@ -22,8 +21,8 @@ in
sshpass = "ssh -o PubkeyAuthentication=no"; sshpass = "ssh -o PubkeyAuthentication=no";
tf = "terraform"; tf = "terraform";
tfyolo = "terraform apply -auto-approve"; tfyolo = "terraform apply -auto-approve";
v = "vim";
vi = "vim"; vi = "vim";
v = "vim";
}; };
shellAliases = { shellAliases = {