This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

add attic cache

+11 -2
+5 -2
.github/workflows/ci.yml
··· 29 29 - uses: DeterminateSystems/nix-installer-action@main 30 30 - uses: DeterminateSystems/magic-nix-cache-action@main 31 31 - name: Build 32 - shell: nix shell nixpkgs#nix-fast-build --command bash {0} 33 - run: nix-fast-build --skip-cached --no-nom --flake '.#checks.x86_64-linux.${{ matrix.pkg }}^*' 32 + shell: nix shell nixpkgs#attic-client nixpkgs#nix-fast-build --command bash {0} 33 + run: | 34 + attic login --set-default tombl https://nix.tombl.net '${{secrets.ATTIC_TOKEN}}' 35 + attic use linuxwasm 36 + nix-fast-build --skip-cached --no-nom --flake '.#checks.x86_64-linux.${{ matrix.pkg }}^*' --attic-cache=linuxwasm
+6
flake.nix
··· 47 47 }; 48 48 # keep-sorted end 49 49 }; 50 + 51 + nixConfig = { 52 + extra-substituters = [ "https://nix.tombl.net/linuxwasm" ]; 53 + extra-trusted-keys = [ "linuxwasm:VY2O9prGSkyVY+xn1RNQV4voLVTnc2FOxAtzf8VbZaw=" ]; 54 + }; 55 + 50 56 outputs = 51 57 inputs: 52 58 inputs.flake-parts.lib.mkFlake { inherit inputs; } {