fix: Set correct subnet for tayga

This commit is contained in:
Jan-Bulthuis 2025-11-07 21:30:13 +01:00
parent 13302deaef
commit 5458f74c83
2 changed files with 18 additions and 13 deletions

8
flake.lock generated
View File

@ -202,11 +202,11 @@
}, },
"secrets": { "secrets": {
"locked": { "locked": {
"lastModified": 1762546175, "lastModified": 1762547267,
"narHash": "sha256-ZYhCCN6dUlRoyzqFaU3oIG85NQZ2QwrOle8ZwlPorg0=", "narHash": "sha256-bDYmYBJxtsSES+gcpHfpnURA7QDJ3cC1Mg2jzQl5zdg=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "774bacddc5d28ea3083d6e31a29549bbe738418b", "rev": "601b97ba998f743a333fe7523dd5825816155778",
"revCount": 16, "revCount": 17,
"type": "git", "type": "git",
"url": "ssh://gitea@git.bulthuis.dev/Jan/nixos-secrets" "url": "ssh://gitea@git.bulthuis.dev/Jan/nixos-secrets"
}, },

View File

@ -28,15 +28,20 @@
prefixLength = 16; prefixLength = 16;
}; };
}; };
ipv6 = { ipv6 =
address = "${inputs.secrets.lab.network.ula.prefixBase}::6464"; let
router = { ula = inputs.secrets.lab.network.ula.prefixBase;
address = "64::ff9b::1"; net = toString inputs.secrets.lab.network.vlan.lab;
in
{
address = "${ula}:${net}::6464";
router = {
address = "64::ff9b::1";
};
pool = {
address = "64:ff9b::";
prefixLength = 96;
};
}; };
pool = {
address = "64:ff9b::";
prefixLength = 96;
};
};
}; };
} }