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

16
home/tb.nix Normal file
View File

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