{ flake-utils, pkgs, ... }: flake-utils.lib.eachDefaultSystem (system: let createScript = { name, runtimeInputs, scriptPath, extraWrapperFlags ? "", ... }: let script = (pkgs.writeScriptBin name (builtins.readFile scriptPath)).overrideAttrs (old: { buildCommand = "${old.buildCommand}\n patchShebangs $out"; }); in pkgs.symlinkJoin { inherit name; paths = [ script ] ++ runtimeInputs; buildInputs = [ pkgs.makeWrapper ]; postBuild = "wrapProgram $out/bin/${name} --set PATH $out/bin ${extraWrapperFlags}"; }; in { packages.bootstrap = createScript { name = "bootstrap"; runtimeInputs = with pkgs; [ libsecret coreutils nixos-anywhere ]; scriptPath = ./bootstrap.sh; }; packages.gen-k3s-cert = createScript { name = "create-k3s-cert"; runtimeInputs = with pkgs; [ openssl coreutils openssh yq ]; scriptPath = ./gen-k3s-cert.sh; }; })