{ name, writeShellApplication, ... }: writeShellApplication { inherit name; text = '' if [ "$#" -lt 3 ]; then echo "Usage: $0 [service2 ...]" >&2 echo "Example: $0 hintbooth hosts/nixos/x86_64-linux adguardhome nginx" >&2 exit 1 fi HOST="$1" ARCH_PATH="$2" shift 2 for service in "$@"; do cat <