nixos-config/new-infra/default.nix

19 lines
337 B
Nix
Raw Normal View History

2024-04-15 13:19:35 +00:00
{config, ...}: {
networking = {
bridges.containers.interfaces = ["container-root"];
interfaces = {
container-root = {
virtual = true;
};
containers = {
ipv6.addresses = [
{
address = "fc00::1";
prefixLength = 64;
}
];
};
};
};
}