Merge pull request #219 from naturallaw777/copilot/fix-hub-autolaunch-script

fix: add coreutils to hub-autolaunch-script PATH
This commit is contained in:
Sovran_Systems
2026-04-12 20:14:21 -05:00
committed by GitHub

View File

@@ -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"