fix: use Nix official installer with --no-daemon
Build & Deploy (Nix) / build-and-deploy (push) Failing after 11s

The Determinate Systems installer doesn't support --no-daemon.
Switch to the official Nix installer which has a well-documented
--no-daemon flag suitable for container/CI use.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
Claude
2026-07-30 15:30:59 +07:00
parent bfafcc0a20
commit 5bd3d286ce
+1 -2
View File
@@ -15,8 +15,7 @@ jobs:
- name: Install Nix
run: |
curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix \
| sh -s -- install --no-confirm --no-daemon
sh <(curl -L https://nixos.org/nix/install) --no-daemon 2>&1
echo "$HOME/.nix-profile/bin" >> "$GITHUB_PATH"
- name: Build with Nix