add route for fc00::

This commit is contained in:
Charlotte 🦝 Delenk 2024-04-14 15:17:42 +01:00
parent b6d4046b30
commit ea1f268468

View file

@ -61,6 +61,12 @@ in {
pkgs,
...
}: {
networking.interfaces.eth0.ipv6.routes = [
{
address = "fc00::";
prefixLength = 64;
}
];
services.keycloak = {
database = {
host = config'.containers.postgresql.localAddress6;