From f5da41b4951598c977691ece523bcd8c3e3ba9df Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 27 May 2024 13:03:41 +0300 Subject: [PATCH] Add termbin alias --- modules/termbin.nix | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/termbin.nix diff --git a/modules/termbin.nix b/modules/termbin.nix new file mode 100644 index 0000000..66d49bd --- /dev/null +++ b/modules/termbin.nix @@ -0,0 +1,5 @@ +{ lib, ... }: with lib; + +systemConfiguration { + environment.shellAliases.tb = "nc termbin.com 9999"; +}