From 2238aff4685c84f8db5e45dd5fcc03e9457d5c14 Mon Sep 17 00:00:00 2001 From: Tyler Mayoff Date: Tue, 2 Sep 2025 21:25:00 -0400 Subject: [PATCH] install nix --- .forgejo/workflows/main.yml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.forgejo/workflows/main.yml b/.forgejo/workflows/main.yml index ef4a6f1..aff5f4c 100644 --- a/.forgejo/workflows/main.yml +++ b/.forgejo/workflows/main.yml @@ -26,9 +26,9 @@ jobs: - uses: actions/checkout@v4 - name: install nix - uses: https://github.com/DeterminateSystems/determinate-nix-action@v3.5.2 - with: - extra-conf: "lazy-trees = true" + uses: https://github.com/DeterminateSystems/determinate-nix-action + # with: + # extra-conf: "lazy-trees = true" - uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main with: @@ -44,20 +44,20 @@ jobs: authToken: '${{ secrets.CACHIX_AUTH }}' - uses: https://github.com/workflow/nix-shell-action@v3 - if: runner.os == 'Linux' + # if: runner.os == 'Linux' name: build nixos with: packages: nh script: | nh os build ./dot_config/flake#nixosConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1 - - uses: https://github.com/workflow/nix-shell-action@v3 - if: runner.os == 'macOS' - name: build darwin - with: - packages: nh - script: | - nh darwin build ./dot_config/flake#darwinConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1 + # - uses: https://github.com/workflow/nix-shell-action@v3 + # if: runner.os == 'macOS' + # name: build darwin + # with: + # packages: nh + # script: | + # nh darwin build ./dot_config/flake#darwinConfigurations.${{matrix.hostname}} --no-nom -- --cores 1 -j1 # - name: download last artifact # uses: dawidd6/action-download-artifact@v11