From 2d771638b4933bb2654e5b50e8ee6b6a8ebea644 Mon Sep 17 00:00:00 2001 From: Vincent Mahnke Date: Fri, 26 Dec 2025 16:00:55 +0100 Subject: [PATCH] feat: Replaces nix dependencies from container --- .github/workflows/kiosk-iso.yml | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/kiosk-iso.yml b/.github/workflows/kiosk-iso.yml index ec9154b..82d2f2d 100644 --- a/.github/workflows/kiosk-iso.yml +++ b/.github/workflows/kiosk-iso.yml @@ -8,26 +8,32 @@ on: jobs: flake-check: runs-on: ubuntu-latest - container: - image: nixos/nix:2.33.0 env: NIX_CONFIG: extra-experimental-features = nix-command flakes steps: - name: Checkout uses: actions/checkout@v4 + - name: Install Nix + run: | + curl -L https://nixos.org/nix/install | sh + . /home/runner/.nix-profile/etc/profile.d/nix.sh + nix --version - name: Flake check run: nix flake check -L build-iso: runs-on: ubuntu-latest needs: [ flake-check ] - container: - image: nixos/nix:2.33.0 env: NIX_CONFIG: extra-experimental-features = nix-command flakes steps: - name: Checkout uses: actions/checkout@v4 + - name: Install Nix + run: | + curl -L https://nixos.org/nix/install | sh + . /home/runner/.nix-profile/etc/profile.d/nix.sh + nix --version - name: Build ISO run: | nix --version