309 current 2025-02-09 01:23:40 25.05.20241217.d3c42f1 6.6.66 *

This commit is contained in:
2025-02-09 01:23:53 -05:00
parent 9b230f5e3e
commit 145d695164
3 changed files with 38 additions and 56 deletions

View File

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