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 <noreply@anthropic.com>
This commit is contained in:
2026-01-31 10:52:22 +01:00
parent fd97209ed7
commit ae74140a55
+1 -1
View File
@@ -13,7 +13,7 @@ jobs:
- name: Install Nix - name: Install Nix
run: | 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" echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
- name: Update flake inputs - name: Update flake inputs