From 7ba91ca488e9dc451e935ddf963c3d6ee3c18753 Mon Sep 17 00:00:00 2001 From: Seth Flynn Date: Sun, 21 Sep 2025 16:25:55 -0400 Subject: [PATCH] ci(nix): always use upstream nix This ensures evaluation is consistent between out-of-tree and in-tree runs It also probably won't be possible to install upstream Nix with the Determinate installer action soon so..... Signed-off-by: Seth Flynn --- .github/workflows/nix.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 4349da448..3a1800ff9 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -67,7 +67,6 @@ permissions: env: DEBUG: ${{ github.ref_type != 'tag' }} - USE_DETERMINATE: ${{ github.event_name == 'pull_request' }} jobs: build: @@ -96,9 +95,7 @@ jobs: uses: actions/checkout@v5 - name: Install Nix - uses: DeterminateSystems/nix-installer-action@v19 - with: - determinate: ${{ env.USE_DETERMINATE }} + uses: cachix/install-nix-action@v31 # For PRs - name: Setup Nix Magic Cache