From 5bd3d286ceb5ee44181d7534e351e5e841ad5e93 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 30 Jul 2026 15:30:59 +0700 Subject: [PATCH] fix: use Nix official installer with --no-daemon 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) --- .gitea/workflows/deploy.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index aeb3492..fae448b 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -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