From a5b8ca2dce3aad872ed1cc5a21cee4b4d08ec769 Mon Sep 17 00:00:00 2001 From: David Dunn <26876072+doubledup@users.noreply.github.com> Date: Tue, 9 Jan 2024 13:40:18 +0200 Subject: [PATCH] Add `github:` prefix to Roc repo Without this Nix looks for the flake `flake:roc-lang/roc` in the flake registries and errors when it can't find the flake. --- getting_started/nix.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/getting_started/nix.md b/getting_started/nix.md index 51bfce7246..5c5214423a 100644 --- a/getting_started/nix.md +++ b/getting_started/nix.md @@ -2,10 +2,10 @@ To quickly try out roc without installing, use `nix run`: ```shell -nix run roc-lang/roc -- +nix run github:roc-lang/roc -- # examples: -# - nix run roc-lang/roc -- repl -# - nix run roc-lang/roc -- dev main.roc +# - nix run github:roc-lang/roc -- repl +# - nix run github:roc-lang/roc -- dev main.roc ``` ## Use with Flakes