From 99bdf32ab43bc5d6f3dc6d7a08da459977b041c3 Mon Sep 17 00:00:00 2001 From: kekrby Date: Tue, 6 Dec 2022 20:21:04 +0300 Subject: [PATCH] README: mention prebuilt installers and how to join them after listing the variants --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f565949..2b73730 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,19 @@ This flake can be used to build a NixOS installer that can be used with T2 Macs. -Prebuilt installers are available in the [releases page](https://github.com/kekrby/nixos-t2-iso/releases). - This repo provides two ISOs: * `t2-iso-minimal` * `t2-iso-gnome` It is recommended to use `t2-iso-minimal` for installing NixOS. `t2-iso-gnome` can be used to preview what the system will look like after the installation. +Prebuilt installers are available in the [releases page](https://github.com/kekrby/nixos-t2-iso/releases). + +As ISO files can be quite large depending on their content, they are split into multiple parts. You can join them with this command after downloading all the files for the variant you want: +``` +cat t2-iso-.iso-part-* > t2-iso-.iso +``` + ## Building You can build with this command: @@ -18,8 +23,3 @@ nix build .#t2-iso-minimal ``` The build has to be done in Linux. If you are on macOS, you should do the build in a Linux VM. - -As ISO files can be quite large depending on their content, they are split into multiple parts. You can join them with this command after downloading all the files for the variant you want: -``` -cat t2-iso-.iso-part-* > t2-iso-.iso -```