From f1d4726acc07eda73c00c64acc632515da5c2505 Mon Sep 17 00:00:00 2001 From: cofob Date: Wed, 19 Jun 2024 22:56:25 +0400 Subject: [PATCH] Fix nix run command in docs --- docs/docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/index.md b/docs/docs/index.md index 9dab324f..017255a3 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -32,13 +32,13 @@ Mineflake can be used with Nix or without it. To use Mineflake without Nix, you ``` bash bash <(curl -L https://nixos.org/nix/install) # (1) - nix run github:nix-community/mineflake --help # (2) + nix run github:nix-community/mineflake -- --help # (2) ``` 1. This command installs Nix. If you want to install it manually, you can find more information on [Nix website](https://nixos.org/download.html). 2. This doesn't install Mineflake to your system, it just runs it. So if you want to execute - `mineflake apply` command, you need to run `nix run github:nix-community/mineflake apply` instead. + `mineflake apply` command, you need to run `nix run github:nix-community/mineflake -- apply` instead. ???+ tip "Faster builds (optional)"