diff --git a/.sisyphus/ralph-loop.local.md b/.sisyphus/ralph-loop.local.md index 84c7e5d..c893ec6 100644 --- a/.sisyphus/ralph-loop.local.md +++ b/.sisyphus/ralph-loop.local.md @@ -1,15 +1,13 @@ --- active: true -iteration: 2 +iteration: 3 max_iterations: 500 -completion_promise: "VERIFIED" +completion_promise: "DONE" initial_completion_promise: "DONE" -verification_attempt_id: "8bd02d34-4ca9-4686-b3ad-ae8a2330ad40" -started_at: "2026-04-10T15:43:59.279Z" +started_at: "2026-04-10T15:59:34.105Z" session_id: "ses_28863d32affeOW6Iiz2415uZSk" ultrawork: true -verification_pending: true strategy: "continue" -message_count_at_start: 169 +message_count_at_start: 191 --- Complete the task as instructed diff --git a/scripts/install.sh b/scripts/install.sh index 777bda6..52fa0ae 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -2,18 +2,23 @@ set -euo pipefail REPO_URL="https://git.furtherverse.com/imbytecat/nix-config.git" -CONFIG_DIR="$HOME/.config/nix-config" +CONFIG_DIR="$HOME/Developer/nix-config" if [[ -d "$CONFIG_DIR/.git" ]]; then git -C "$CONFIG_DIR" pull else + mkdir -p "$HOME/Developer" git clone "$REPO_URL" "$CONFIG_DIR" fi case "$(uname)" in Darwin) TARGET="${1:?Usage: $0 }" - darwin-rebuild switch --flake "$CONFIG_DIR#$TARGET" + if command -v darwin-rebuild &>/dev/null; then + sudo darwin-rebuild switch --flake "$CONFIG_DIR#$TARGET" + else + sudo nix run nix-darwin -- switch --flake "$CONFIG_DIR#$TARGET" + fi ;; Linux) sudo nixos-rebuild switch --flake "$CONFIG_DIR#wsl"