From d82d871b8896f720c0c9a7b1e16b7967d1b074cb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 13 Apr 2026 01:09:05 +0000 Subject: [PATCH] fix: add coreutils to hub-autolaunch-script PATH so seq and touch are available Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/4265b3b7-44b2-4209-8364-19b9d44d4f99 Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- modules/core/sovran-hub.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/core/sovran-hub.nix b/modules/core/sovran-hub.nix index f790eeb..d4c0cf4 100644 --- a/modules/core/sovran-hub.nix +++ b/modules/core/sovran-hub.nix @@ -232,7 +232,7 @@ let # ── Hub auto-launch wrapper script ──────────────────────────────── hub-autolaunch-script = pkgs.writeShellScript "sovran-hub-autolaunch.sh" '' - export PATH="${lib.makeBinPath [ pkgs.curl ]}:$PATH" + export PATH="${lib.makeBinPath [ pkgs.curl pkgs.coreutils ]}:$PATH" DISABLE_FLAG="/var/lib/sovran/hub-autolaunch-disabled" BOOT_FLAG="/run/sovran-hub-autolaunch-done"