From 475398afa61f8639dd5020078831aa484e1c45a1 Mon Sep 17 00:00:00 2001 From: t-monaghan Date: Mon, 1 Sep 2025 11:29:08 +1000 Subject: [PATCH] fixes reference to nixpkgs in pre fetch command --- internal/nix/nix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/nix/nix.go b/internal/nix/nix.go index 0f858d17dea..3335edb795d 100644 --- a/internal/nix/nix.go +++ b/internal/nix/nix.go @@ -112,7 +112,7 @@ func savePrintDevEnvCache(path string, out PrintDevEnvOut) error { func FlakeNixpkgs(commit string) string { // Using nixpkgs/ means: // The nixpkgs entry in the flake registry, with its Git revision overridden to a specific value. - return "nixpkgs/" + commit + return "github:nixpkgs/" + commit } func ExperimentalFlags() []string {