System/Nixinator: Enable IPv6 networking
This commit is contained in:
@ -85,6 +85,9 @@
|
||||
ip,
|
||||
router,
|
||||
nameserver ? "8.8.8.8;8.8.4.4;",
|
||||
ip6,
|
||||
router6,
|
||||
nameserver6 ? "2001:4860:4860::8888;2001:4860:4860::8844;",
|
||||
autoconnect ? true,
|
||||
priority ? 0,
|
||||
}: {
|
||||
@ -103,7 +106,12 @@
|
||||
};
|
||||
|
||||
ipv6 = {
|
||||
method = "disabled";
|
||||
method = "auto";
|
||||
addr-gen-mode = "stable-privacy";
|
||||
ignore-auto-dns = "true";
|
||||
address1 = ip6;
|
||||
gateway = router6;
|
||||
dns = nameserver6;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user