diff --git a/.gitea/workflows/build-image.yml b/.gitea/workflows/build-image.yml index c52f1f4..74f9c97 100644 --- a/.gitea/workflows/build-image.yml +++ b/.gitea/workflows/build-image.yml @@ -18,11 +18,9 @@ jobs: if [ ! -f ~/.nix-profile/etc/profile.d/nix.sh ]; then bash <(curl -L https://nixos.org/nix/install) --no-daemon fi - - run: | - . ~/.nix-profile/etc/profile.d/nix.sh - export NIX_CONFIG='experimental-features = nix-command flakes' - env | grep NIX | tee --append "$GITHUB_ENV" - name: Checkout repo uses: actions/checkout@v4 - - run: nix build .#image -o image.tar.gz + - run: | + . ~/.nix-profile/etc/profile.d/nix.sh + nix build .#image -o image.tar.gz - run: ls -lah