Skip to content

Commit fa0bf8a

Browse files
authored
Merge pull request #74 from matter-labs/attic
fix: update extra substituter URL in nixConfig
2 parents 788ff52 + 3508e22 commit fa0bf8a

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/nix.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
extra_nix_config: |
2121
access-tokens = github.com=${{ github.token }}
2222
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=
23-
substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot
23+
substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot
2424
sandbox = true
2525
- name: Setup Attic cache
2626
uses: ryanccn/attic-action@v0
2727
with:
28-
endpoint: https://attic.teepot.org/
28+
endpoint: https://static.188.92.12.49.clients.your-server.de/
2929
cache: tee-pot
3030
token: ${{ secrets.ATTIC_TOKEN }}
3131
- name: Enable magic Nix cache
@@ -42,12 +42,12 @@ jobs:
4242
extra_nix_config: |
4343
access-tokens = github.com=${{ github.token }}
4444
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=
45-
substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot
45+
substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot
4646
sandbox = true
4747
- name: Setup Attic cache
4848
uses: ryanccn/attic-action@v0
4949
with:
50-
endpoint: https://attic.teepot.org/
50+
endpoint: https://static.188.92.12.49.clients.your-server.de/
5151
cache: tee-pot
5252
token: ${{ secrets.ATTIC_TOKEN }}
5353
- name: Enable magic Nix cache
@@ -65,12 +65,12 @@ jobs:
6565
extra_nix_config: |
6666
access-tokens = github.com=${{ github.token }}
6767
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=
68-
substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot
68+
substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot
6969
sandbox = true
7070
- name: Setup Attic cache
7171
uses: ryanccn/attic-action@v0
7272
with:
73-
endpoint: https://attic.teepot.org/
73+
endpoint: https://static.188.92.12.49.clients.your-server.de/
7474
cache: tee-pot
7575
token: ${{ secrets.ATTIC_TOKEN }}
7676
- name: Enable magic Nix cache

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
nixConfig = {
3-
extra-substituters = [ "https://attic.teepot.org/tee-pot" ];
3+
extra-substituters = [ "https://static.188.92.12.49.clients.your-server.de/tee-pot" ];
44
extra-trusted-public-keys = [ "tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=" ];
55
};
66

0 commit comments

Comments
 (0)