From c369fb7c8392fca9d3d3633fec7c603143a47a9e Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Mon, 21 Jul 2025 12:30:02 +0200 Subject: [PATCH] fix: update extra substituter URL in nixConfig - Replaced outdated substituter URL with a new static IP-based URL. - Ensures proper configuration and access to the required substituter. --- .github/workflows/nix-non-x86.yml | 4 ++-- .github/workflows/nix.yml | 12 ++++++------ flake.nix | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/nix-non-x86.yml b/.github/workflows/nix-non-x86.yml index b80cf6a..279e6c3 100644 --- a/.github/workflows/nix-non-x86.yml +++ b/.github/workflows/nix-non-x86.yml @@ -21,12 +21,12 @@ jobs: extra_nix_config: | access-tokens = github.com=${{ github.token }} trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg= - substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot + substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot sandbox = true - name: Setup Attic cache uses: ryanccn/attic-action@v0 with: - endpoint: https://attic.teepot.org/ + endpoint: https://static.188.92.12.49.clients.your-server.de/ cache: tee-pot token: ${{ secrets.ATTIC_TOKEN }} diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index 3d850ea..8981a37 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -22,12 +22,12 @@ jobs: extra_nix_config: | access-tokens = github.com=${{ github.token }} trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg= - substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot + substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot sandbox = true - name: Setup Attic cache uses: ryanccn/attic-action@v0 with: - endpoint: https://attic.teepot.org/ + endpoint: https://static.188.92.12.49.clients.your-server.de/ cache: tee-pot token: ${{ secrets.ATTIC_TOKEN }} @@ -44,12 +44,12 @@ jobs: extra_nix_config: | access-tokens = github.com=${{ github.token }} trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg= - substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot + substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot sandbox = true - name: Setup Attic cache uses: ryanccn/attic-action@v0 with: - endpoint: https://attic.teepot.org/ + endpoint: https://static.188.92.12.49.clients.your-server.de/ cache: tee-pot token: ${{ secrets.ATTIC_TOKEN }} @@ -84,12 +84,12 @@ jobs: extra_nix_config: | access-tokens = github.com=${{ github.token }} trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg= - substituters = https://cache.nixos.org/ https://attic.teepot.org/tee-pot + substituters = https://cache.nixos.org/ https://static.188.92.12.49.clients.your-server.de/tee-pot sandbox = true - name: Setup Attic cache uses: ryanccn/attic-action@v0 with: - endpoint: https://attic.teepot.org/ + endpoint: https://static.188.92.12.49.clients.your-server.de/ cache: tee-pot token: ${{ secrets.ATTIC_TOKEN }} diff --git a/flake.nix b/flake.nix index f3ec3fe..587718e 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "teepot"; nixConfig = { - extra-substituters = [ "https://attic.teepot.org/tee-pot" ]; + extra-substituters = [ "https://static.188.92.12.49.clients.your-server.de/tee-pot" ]; extra-trusted-public-keys = [ "tee-pot:SS6HcrpG87S1M6HZGPsfo7d1xJccCGev7/tXc5+I4jg=" ]; };