From 7e135d744d50200464254ca508f4feb642d0656e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 26 Feb 2023 16:00:27 +0100 Subject: [PATCH] quickstart: fix example --- docs/quickstart.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/quickstart.md b/docs/quickstart.md index 716d9fa..56f9e77 100644 --- a/docs/quickstart.md +++ b/docs/quickstart.md @@ -106,10 +106,10 @@ imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix "${builtins.fetchTarball "https://github.com/nix-community/disko/archive/master.tar.gz"}/module.nix" - (pkgs.callPackage ./disko-config.nix { - disks = ["/dev/"]; # replace this with your disk name i.e. /dev/nvme0n1 - }) ]; + disko.devices = pkgs.callPackage ./disko-config.nix { + disks = [ "/dev/" ]; # replace this with your disk name i.e. /dev/nvme0n1 + }; ``` If you went for the hybrid-partition scheme, than choose grub as a bootloader.