prefect: Fix IPv6

This commit is contained in:
The Hedgehog 2022-08-12 09:37:12 -04:00
parent 4231a517d6
commit ec0831b3cb
No known key found for this signature in database

View file

@ -1,10 +1,16 @@
{lib, ...}: {
networking = {
hostName = "prefect";
nameservers = lib.mkForce [
"2a01:4ff:ff00::add:2"
"2a01:4ff:ff00::add:1"
"185.12.64.1"
"185.12.64.2"
];
interfaces.enp1s0 = {
ipv6.addresses = [
{
address = "2a01:4ff:f0:98bf::";
address = "2a01:4ff:f0:98bf::1";
prefixLength = 64;
}
];