1

System/Nixinator: Enable IPv6 networking

This commit is contained in:
2026-01-24 19:22:11 +01:00
parent c1360e5c2c
commit 7f99b73635
2 changed files with 73 additions and 17 deletions

View File

@ -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;
};
};
}