From 18c40ad2b839607ba668792054317f2ad6611386 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 21 Jul 2024 22:05:27 +0200 Subject: [PATCH] docs/setup: recommends nixos configuration for nixos users --- docs/site/index.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/site/index.md b/docs/site/index.md index 67ad0f166..74cc4bb7b 100644 --- a/docs/site/index.md +++ b/docs/site/index.md @@ -24,11 +24,10 @@ Create your own clan with these initial steps and manage a fleet of machines wit If you run NixOS the `nix` binary is already installed. - You will also need to enable the `flakes` and `nix-commands` experimental features. + You will also need to enable the `flakes` and `nix-commands` experimental features in your configuration.nix: - ```bash - # /etc/nix/nix.conf or ~/.config/nix/nix.conf - experimental-features = nix-command flakes + ```nix + { nix.settings.experimental-features = [ "nix-command" "flakes" ]; } ``` === "**Other**"