From 5af560a8ccfe0d7dbff845617871be9e4bb4503a Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Fri, 12 Jul 2024 00:23:14 -0400 Subject: [PATCH] Add `termbin` alias, which I haven't been able to test. --- home/aliases.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/home/aliases.nix b/home/aliases.nix index 11d71af..f623c69 100644 --- a/home/aliases.nix +++ b/home/aliases.nix @@ -12,5 +12,8 @@ # From Nix environment "7z" = "7zz"; # "7zz" is from "nixpkgs#_7zz" + "termbin" = "nc termbin.com 9999"; + # Alias that lets me upload text to https://termbin.com/ + # Mainly so I can lazily upload build logs. }; }