nix-config/packages/create-script.nix
Oliver Davies 4b871d332e
Some checks are pending
/ check (push) Waiting to run
Refactor
Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
2025-09-23 12:31:56 +01:00

19 lines
204 B
Nix
Executable file

{ pkgs }:
pkgs.writeShellApplication {
name = "create-script";
text = ''
cat > "$1" << EOF
#!/usr/bin/env bash
set -euo pipefail
EOF
chmod +x "$1"
$EDITOR "$1";
'';
}