306 current 2025-01-25 22:09:05 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-01-26 00:29:12 -05:00
parent 1405bb6d3f
commit b3728610ad
7 changed files with 68 additions and 135 deletions

2
home/scripts/tb.sh Normal file
View File

@@ -0,0 +1,2 @@
file=$1
cat "$1" | nc termbin.com 9999

View File

@@ -1,16 +0,0 @@
# scripts.nix
{pkgs, ...}: {
home.packages = with pkgs; [
(writeShellApplication {
name = "termbin";
runtimeInputs = with pkgs; [
netcat
];
text = ''
file=$1
cat "$1" | nc termbin.com 9999
'';
})
];
}