From ae74140a5583448e62bc777a724f01444220d3aa Mon Sep 17 00:00:00 2001 From: kalle Date: Sat, 31 Jan 2026 10:52:22 +0100 Subject: [PATCH] ci: pass --init none to nix installer for Docker container The act runner uses Docker containers without systemd, so the Nix installer needs --init none for a root-only install. Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/flake-update.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/flake-update.yaml b/.gitea/workflows/flake-update.yaml index 3c73533..528f9b0 100644 --- a/.gitea/workflows/flake-update.yaml +++ b/.gitea/workflows/flake-update.yaml @@ -13,7 +13,7 @@ jobs: - name: Install Nix run: | - curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux --no-confirm + curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install linux --no-confirm --init none echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH" - name: Update flake inputs