fix(ci): fetch yogurt input over https so CI can eval without ssh key
CI / lint (push) Successful in 1m5s
CI / eval (push) Failing after 2m28s

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) <noreply@anthropic.com>
This commit is contained in:
Miguel Palhas
2026-07-08 11:27:18 +01:00
parent 79d4bcc989
commit f64cc3a803
2 changed files with 3 additions and 3 deletions
Generated
+2 -2
View File
@@ -1076,11 +1076,11 @@
"rev": "515ab16c76fc0779a1c6be93cfa1424a901373cb", "rev": "515ab16c76fc0779a1c6be93cfa1424a901373cb",
"revCount": 67, "revCount": 67,
"type": "git", "type": "git",
"url": "ssh://git@github.com/ZePedroResende/yogurt" "url": "https://github.com/ZePedroResende/yogurt"
}, },
"original": { "original": {
"type": "git", "type": "git",
"url": "ssh://git@github.com/ZePedroResende/yogurt" "url": "https://github.com/ZePedroResende/yogurt"
} }
}, },
"zen-browser": { "zen-browser": {
+1 -1
View File
@@ -58,7 +58,7 @@
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
claude-code.url = "github:sadjow/claude-code-nix"; 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 = { nix-index-database = {
url = "github:nix-community/nix-index-database"; url = "github:nix-community/nix-index-database";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";