Fix remote builder ip address
This commit is contained in:
parent
a5f3e05889
commit
f7b6fdf07a
2 changed files with 8 additions and 2 deletions
|
@ -10,7 +10,7 @@ let
|
|||
delegateACMEDNSChallenge = acme: { _acme-challenge.CNAME = [ acme ]; };
|
||||
|
||||
remoteBuilders = {
|
||||
nix01 = [ "2001:470:1f13:187:1e07:c670:3958:f8f1" ];
|
||||
nix01 = [ "2001:470:1f13:187:611:4514:d93a:f80a" ];
|
||||
};
|
||||
dualstack = {
|
||||
A = my.ipv4;
|
||||
|
|
|
@ -24,7 +24,13 @@
|
|||
# Per-interface useDHCP will be mandatory in the future, so this generated config
|
||||
# replicates the default behaviour.
|
||||
networking.useDHCP = false;
|
||||
networking.interfaces.ens19.useDHCP = true;
|
||||
networking.interfaces.ens19 = {
|
||||
useDHCP = true;
|
||||
ipv6.addresses = [{
|
||||
address = "2001:470:1f13:187:611:4514:d93a:f80a";
|
||||
prefixLength = 64;
|
||||
}];
|
||||
};
|
||||
|
||||
# Configure network proxy if necessary
|
||||
# networking.proxy.default = "http://user:password@proxy:port/";
|
||||
|
|
Loading…
Reference in a new issue