This commit is contained in:
mergify[bot] 2023-08-05 08:30:50 +00:00
parent 3fee24e20a
commit b54976c361
6 changed files with 12 additions and 12 deletions

View File

@ -1,2 +1,2 @@
cp -r /nix/store/z9y6mqbgmmi3lk1vjn6vyb30wzw2ky3s-source/* .
cp -r /nix/store/z8pfy30mjwbyz6p463nqj7x55br136lp-source/* .
/nix/store/yraybmrngngjgs1ly1hh37g24h83wybl-mdbook-0.4.30/bin/mdbook build --dest-dir "$out"

View File

@ -3,10 +3,10 @@ declare -x HOME="/homeless-shelter"
declare -x HOST_PATH="/nix/store/c2bq8xsayc90s33fd5xbm1vh5lrmwcfq-coreutils-9.3/bin:/nix/store/dq11g3lzkl5bxrjy9y6x1pjxkxx6z91f-findutils-4.9.0/bin:/nix/store/xwchhp6yh1s1m1zkkzfqc8dwfprlz6mi-diffutils-3.10/bin:/nix/store/n31qkcw7f4jkkl0crczd6hiyy8sdjaz5-gnused-4.9/bin:/nix/store/yw3g789y5fpmxbzgkhs4nv7xdnyklsjd-gnugrep-3.11/bin:/nix/store/l69xigsqwjhlfl45h59ih69r1ni44xli-gawk-5.2.2/bin:/nix/store/61fb45v0p9rgpg8k4bmkd7wz187454f9-gnutar-1.34/bin:/nix/store/zh1g9lzd8wpgcjxcvm3y4a6dwjy50dym-gzip-1.12/bin:/nix/store/118gd5v4dr5zsmqkd4bigp3j5vhmdmn5-bzip2-1.0.8-bin/bin:/nix/store/xqgd14chbnrqyi0080kkyzsxwsi3hvld-gnumake-4.4.1/bin:/nix/store/51sszqz1d9kpx480scb1vllc00kxlx79-bash-5.2-p15/bin:/nix/store/sf1434s0vamnwa1ms1az7nn6z5qg5kqc-patch-2.7.6/bin:/nix/store/j9mafmdr7vmbvwznmd8axg7vgqn93m11-xz-5.4.3-bin/bin:/nix/store/fqi9n7p5rrzqansqb64zf92c2g0hk0hk-file-5.44/bin"
declare -x NIX_BUILD_CORES="2"
declare -x NIX_BUILD_TOP="/build"
declare -x NIX_CFLAGS_COMPILE=" -frandom-seed=wxgayhpk6v"
declare -x NIX_CFLAGS_COMPILE=" -frandom-seed=7wh9ikszix"
declare -x NIX_ENFORCE_NO_NATIVE="1"
declare -x NIX_ENFORCE_PURITY="1"
declare -x NIX_LDFLAGS="-rpath /nix/store/wxgayhpk6vn39d40630mwbdpdbg7fk8y-nixos-anywhere-docs/lib "
declare -x NIX_LDFLAGS="-rpath /nix/store/7wh9ikszixnidiic07i2hi27sj7skg8w-nixos-anywhere-docs/lib "
declare -x NIX_LOG_FD="2"
declare -x NIX_SSL_CERT_FILE="/no-cert-file.crt"
declare -x NIX_STORE="/nix/store"
@ -46,7 +46,7 @@ declare -x enableParallelInstalling="1"
declare -x mesonFlags=""
declare -x name="nixos-anywhere-docs"
declare -x nativeBuildInputs=""
declare -x out="/nix/store/wxgayhpk6vn39d40630mwbdpdbg7fk8y-nixos-anywhere-docs"
declare -x out="/nix/store/7wh9ikszixnidiic07i2hi27sj7skg8w-nixos-anywhere-docs"
declare -x outputs="out"
declare -x passAsFile="buildCommand"
declare -x patches=""

View File

@ -209,12 +209,12 @@ named <code>myconfig</code>.</p>
<p>By default, <code>nixos-anywhere</code> downloads the kexec image from the
<a href="https://github.com/nix-community/nixos-images#kexec-tarballs">NixOS images repository</a>.</p>
<p>However, you can provide your own <code>kexec</code> image file if you need to use a
different one. This is particularly useful for architectures other than
<code>x86_64</code>, since they don't have a pre-build image.</p>
different one. This is particularly useful for architectures other than <code>x86_64</code>
and <code>aarch64</code>, since they don't have a pre-build image.</p>
<p>To do this, use the <code>--kexec</code> command line switch followed by the path to your
image file. The image will be uploaded prior to execution.</p>
<p>Here's an example command that demonstrates how to use a custom kexec image with
<code>nixos-anywhere</code> for aarch64 instead of the default <code>x86_64</code> architecture:</p>
<code>nixos-anywhere</code>:</p>
<pre><code>nix run github:numtide/nixos-anywhere -- \
--kexec &quot;$(nix build --print-out-paths github:nix-community/nixos-images#packages.aarch64-linux.kexec-installer-nixos-unstable-noninteractive)/nixos-kexec-installer-noninteractive-aarch64-linux.tar.gz&quot; \
--flake 'github:your-user/your-repo#your-system' \

View File

@ -407,12 +407,12 @@ named <code>myconfig</code>.</p>
<p>By default, <code>nixos-anywhere</code> downloads the kexec image from the
<a href="https://github.com/nix-community/nixos-images#kexec-tarballs">NixOS images repository</a>.</p>
<p>However, you can provide your own <code>kexec</code> image file if you need to use a
different one. This is particularly useful for architectures other than
<code>x86_64</code>, since they don't have a pre-build image.</p>
different one. This is particularly useful for architectures other than <code>x86_64</code>
and <code>aarch64</code>, since they don't have a pre-build image.</p>
<p>To do this, use the <code>--kexec</code> command line switch followed by the path to your
image file. The image will be uploaded prior to execution.</p>
<p>Here's an example command that demonstrates how to use a custom kexec image with
<code>nixos-anywhere</code> for aarch64 instead of the default <code>x86_64</code> architecture:</p>
<code>nixos-anywhere</code>:</p>
<pre><code>nix run github:numtide/nixos-anywhere -- \
--kexec &quot;$(nix build --print-out-paths github:nix-community/nixos-images#packages.aarch64-linux.kexec-installer-nixos-unstable-noninteractive)/nixos-kexec-installer-noninteractive-aarch64-linux.tar.gz&quot; \
--flake 'github:your-user/your-repo#your-system' \

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long