From f64cc3a8032d7d58e1789903e24e6520db8046d4 Mon Sep 17 00:00:00 2001 From: Miguel Palhas Date: Wed, 8 Jul 2026 11:27:18 +0100 Subject: [PATCH] fix(ci): fetch yogurt input over https so CI can eval without ssh key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The yogurt flake input was pinned via git+ssh://, which the Gitea CI runner can't fetch (no GitHub SSH key), failing the eval job. Switch to git+https:// — repo is anonymously cloneable, same rev/narHash. Co-Authored-By: Claude Opus 4.8 (1M context) --- flake.lock | 4 ++-- flake.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.lock b/flake.lock index cadfae2..95899f4 100644 --- a/flake.lock +++ b/flake.lock @@ -1076,11 +1076,11 @@ "rev": "515ab16c76fc0779a1c6be93cfa1424a901373cb", "revCount": 67, "type": "git", - "url": "ssh://git@github.com/ZePedroResende/yogurt" + "url": "https://github.com/ZePedroResende/yogurt" }, "original": { "type": "git", - "url": "ssh://git@github.com/ZePedroResende/yogurt" + "url": "https://github.com/ZePedroResende/yogurt" } }, "zen-browser": { diff --git a/flake.nix b/flake.nix index 6fd8bd8..a984543 100644 --- a/flake.nix +++ b/flake.nix @@ -58,7 +58,7 @@ inputs.nixpkgs.follows = "nixpkgs"; }; claude-code.url = "github:sadjow/claude-code-nix"; - yogurt.url = "git+ssh://git@github.com/ZePedroResende/yogurt"; + yogurt.url = "git+https://github.com/ZePedroResende/yogurt"; nix-index-database = { url = "github:nix-community/nix-index-database"; inputs.nixpkgs.follows = "nixpkgs";