File tree Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Expand file tree Collapse file tree 3 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -21,5 +21,6 @@ Refer to the following documentation for more information.
21
21
- [ Use without flakes] ( ./howtos/use-without-flakes.md )
22
22
- [ Terraform] ( ./howtos/terraform.md )
23
23
- [ Nix-channels / ` NIX_PATH ` ] ( ./howtos/nix-path.md )
24
+ - [ IPv6-only targets] ( ./howtos/ipv6.md )
24
25
25
26
[ Reference] ( ./reference.md ) : Reference Guide
Original file line number Diff line number Diff line change 19
19
[ Terraform] ( ./terraform.md )
20
20
21
21
[ Nix-channels / ` NIX_PATH ` ] ( ./nix-path.md )
22
+
23
+ [ IPv6-only targets] ( ./ipv6.md )
Original file line number Diff line number Diff line change
1
+ # NixOS-anywhere on Ipv6-only targets
2
+
3
+ As GitHub engineers still haven't enabled the ipv6 switch, the kexec image
4
+ hosted on GitHub, cannot be used unfortunally on ipv6-only hosts. However it is
5
+ possible to use an ipv6 proxy for github content like that:
6
+
7
+ ```
8
+ nixos-anywhere \
9
+ --kexec https://gh-v6.com/nix-community/nixos-images/releases/download/nixos-unstable/nixos-kexec-installer-noninteractive-x86_64-linux.tar.gz \
10
+ ...
11
+ ```
12
+
13
+ This proxy is hosted by (numtide)[ https://numtide.com/ ] . It also works for ipv4.
14
+
15
+ Alternativly it is also possible to reference a local file:
16
+
17
+ ```
18
+ nixos-anywhere \
19
+ --kexec ./nixos-kexec-installer-noninteractive-x86_64-linux.tar.gz \
20
+ ...
21
+ ```
22
+
23
+ This tarball will be than uploaded via sftp to the target.
You can’t perform that action at this time.
0 commit comments