Skip to content

Commit d1615df

Browse files
committed
deploy: 082fb15
1 parent 5ca4b31 commit d1615df

File tree

6 files changed

+40
-24
lines changed

6 files changed

+40
-24
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
cp -r /nix/store/0gk4l64rg6l2w5fqqhp5b2wgxbgn7lp3-source/* .
1+
cp -r /nix/store/dw2palxj6r7c091r5m6bcgbp1n46wscf-source/* .
22
/nix/store/kf6w5gcp13nl0k6q7ymp0p5mycmxpk1i-mdbook-0.4.40/bin/mdbook build --dest-dir "$out"

env-vars

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ declare -x HOME="/homeless-shelter"
33
declare -x HOST_PATH="/nix/store/0kg70swgpg45ipcz3pr2siidq9fn6d77-coreutils-9.5/bin:/nix/store/fnq94lw19pnwdl9p8zhfrad4jmlgxlbr-findutils-4.10.0/bin:/nix/store/7jk4jrd99ngnm9iczcf63mfxqba0ak2y-diffutils-3.10/bin:/nix/store/gjlh1zvckhz0qv795lnzgw2zciklbzj2-gnused-4.9/bin:/nix/store/vsyc8jhsr4d9lm2r8yqq9n3j4i66inlj-gnugrep-3.11/bin:/nix/store/9hifsxkcrkvvb712ghnr3gy5g1aiym2d-gawk-5.2.2/bin:/nix/store/l2l5xr2zczq19gqpqz4j8vxxia1j41s1-gnutar-1.35/bin:/nix/store/164s7a7yscnicprzrr78bvk45d77a3yg-gzip-1.13/bin:/nix/store/f8p74dj4r4my8sw5prmm3y4ddkz7591j-bzip2-1.0.8-bin/bin:/nix/store/axrdky652lsmif6m5i8b55q91v4ly4gy-gnumake-4.4.1/bin:/nix/store/izpf49b74i15pcr9708s3xdwyqs4jxwl-bash-5.2p32/bin:/nix/store/7wg4bz2sika3wd7541rndbnwcq6k9h8v-patch-2.7.6/bin:/nix/store/02mf752h7f5fn7989awzca4ygy94k7w7-xz-5.6.2-bin/bin:/nix/store/fv56zpi80jpakbfmv16r60xvyqwzff6r-file-5.45/bin"
44
declare -x NIX_BUILD_CORES="4"
55
declare -x NIX_BUILD_TOP="/build"
6-
declare -x NIX_CFLAGS_COMPILE=" -frandom-seed=gragpkx7yq"
6+
declare -x NIX_CFLAGS_COMPILE=" -frandom-seed=jwmbkam6yj"
77
declare -x NIX_ENFORCE_NO_NATIVE="1"
88
declare -x NIX_ENFORCE_PURITY="1"
9-
declare -x NIX_LDFLAGS="-rpath /nix/store/gragpkx7yq88pzzdndyp7vpv0myijyfi-nixos-anywhere-docs/lib "
9+
declare -x NIX_LDFLAGS="-rpath /nix/store/jwmbkam6yjhsi10in2d17arzd3vkwxxm-nixos-anywhere-docs/lib "
1010
declare -x NIX_LOG_FD="2"
1111
declare -x NIX_SSL_CERT_FILE="/no-cert-file.crt"
1212
declare -x NIX_STORE="/nix/store"
@@ -46,7 +46,7 @@ declare -x enableParallelInstalling="1"
4646
declare -x mesonFlags=""
4747
declare -x name="nixos-anywhere-docs"
4848
declare -x nativeBuildInputs=""
49-
declare -x out="/nix/store/gragpkx7yq88pzzdndyp7vpv0myijyfi-nixos-anywhere-docs"
49+
declare -x out="/nix/store/jwmbkam6yjhsi10in2d17arzd3vkwxxm-nixos-anywhere-docs"
5050
declare -x outputs="out"
5151
declare -x passAsFile="buildCommand"
5252
declare -x patches=""

print.html

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -278,18 +278,26 @@ <h3 id="3-configure-your-ssh-key"><a class="header" href="#3-configure-your-ssh-
278278
<p>Replace the text <code>CHANGE</code> with your own SSH key. This is crucial, as you will
279279
not be able to log into the target machine post-installation without it.</p>
280280
<h3 id="4-configure-storage"><a class="header" href="#4-configure-storage">4. Configure Storage</a></h3>
281-
<p>In the same directory, create a file named <code>disk-config.nix</code>. This will be used
282-
to specify the disk layout to the
281+
<p>In the same directory, create a file called <code>disk-config.nix</code>. This file will
282+
define the disk layout for the
283283
<a href="https://github.com/nix-community/disko/blob/master/docs/INDEX.md">disko</a> tool,
284-
which nixos-anywhere uses to partition, format and mount the disks.</p>
285-
<p>For a simple installation you can paste the contents from the example
284+
which is used by nixos-anywhere to partition, format, and mount the disks.</p>
285+
<p>For a basic installation, you can copy the contents from the example provided
286286
<a href="https://github.com/nix-community/nixos-anywhere-examples/blob/main/disk-config.nix">here</a>.
287-
This configures a standard GPT (GUID Partition Table) partition compatible with
288-
both EFI and BIOS systems, and mounts the disk as <code>/dev/sda</code>. If this doesn’t
289-
meet your requirements, choose an example that suits your disk layout from the
287+
This configuration sets up a standard GPT (GUID Partition Table) that is
288+
compatible with both EFI and BIOS systems and mounts the disk as <code>/dev/sda</code>. You
289+
may need to adjust <code>/dev/sda</code> to match the correct disk on your machine. To
290+
identify the disk, run the <code>lsblk</code> command and replace <code>sda</code> with the actual
291+
disk name.</p>
292+
<p>For example, on this machine, we would select <code>nvme0n1</code> as the disk:</p>
293+
<pre><code>NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
294+
nvme0n1 259:0 0 1.8T 0 disk
295+
</code></pre>
296+
<p>If this setup does not match your requirements, you can choose an example that
297+
better suits your disk layout from the
290298
<a href="https://github.com/nix-community/disko/tree/master/example">disko examples</a>.
291-
For more information about this configuration, refer to the
292-
<a href="https://github.com/nix-community/disko">disko documentation.</a></p>
299+
For more detailed information, refer to the
300+
<a href="https://github.com/nix-community/disko">disko documentation</a>.</p>
293301
<h3 id="5-lock-your-flake"><a class="header" href="#5-lock-your-flake">5. Lock your Flake</a></h3>
294302
<pre><code>nix flake lock
295303
</code></pre>

quickstart.html

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -223,18 +223,26 @@ <h3 id="3-configure-your-ssh-key"><a class="header" href="#3-configure-your-ssh-
223223
<p>Replace the text <code>CHANGE</code> with your own SSH key. This is crucial, as you will
224224
not be able to log into the target machine post-installation without it.</p>
225225
<h3 id="4-configure-storage"><a class="header" href="#4-configure-storage">4. Configure Storage</a></h3>
226-
<p>In the same directory, create a file named <code>disk-config.nix</code>. This will be used
227-
to specify the disk layout to the
226+
<p>In the same directory, create a file called <code>disk-config.nix</code>. This file will
227+
define the disk layout for the
228228
<a href="https://github.com/nix-community/disko/blob/master/docs/INDEX.md">disko</a> tool,
229-
which nixos-anywhere uses to partition, format and mount the disks.</p>
230-
<p>For a simple installation you can paste the contents from the example
229+
which is used by nixos-anywhere to partition, format, and mount the disks.</p>
230+
<p>For a basic installation, you can copy the contents from the example provided
231231
<a href="https://github.com/nix-community/nixos-anywhere-examples/blob/main/disk-config.nix">here</a>.
232-
This configures a standard GPT (GUID Partition Table) partition compatible with
233-
both EFI and BIOS systems, and mounts the disk as <code>/dev/sda</code>. If this doesn’t
234-
meet your requirements, choose an example that suits your disk layout from the
232+
This configuration sets up a standard GPT (GUID Partition Table) that is
233+
compatible with both EFI and BIOS systems and mounts the disk as <code>/dev/sda</code>. You
234+
may need to adjust <code>/dev/sda</code> to match the correct disk on your machine. To
235+
identify the disk, run the <code>lsblk</code> command and replace <code>sda</code> with the actual
236+
disk name.</p>
237+
<p>For example, on this machine, we would select <code>nvme0n1</code> as the disk:</p>
238+
<pre><code>NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
239+
nvme0n1 259:0 0 1.8T 0 disk
240+
</code></pre>
241+
<p>If this setup does not match your requirements, you can choose an example that
242+
better suits your disk layout from the
235243
<a href="https://github.com/nix-community/disko/tree/master/example">disko examples</a>.
236-
For more information about this configuration, refer to the
237-
<a href="https://github.com/nix-community/disko">disko documentation.</a></p>
244+
For more detailed information, refer to the
245+
<a href="https://github.com/nix-community/disko">disko documentation</a>.</p>
238246
<h3 id="5-lock-your-flake"><a class="header" href="#5-lock-your-flake">5. Lock your Flake</a></h3>
239247
<pre><code>nix flake lock
240248
</code></pre>

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

searchindex.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)