This commit is contained in:
XenGi 2026-08-22 12:12:39 +02:00
commit 5ab92fc676
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
2 changed files with 8 additions and 8 deletions

View file

@ -1,7 +1,7 @@
{ ... }:
{
#boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
virtualisation.podman = {
enable = true;
@ -12,16 +12,16 @@
};
defaultNetwork.settings = {
dns_enabled = true;
#ipv6_enabled = true;
ipv6_enabled = true;
subnets = [
{
gateway = "10.88.0.1";
subnet = "10.88.0.0/16";
}
#{
# gateway = "fd10:88::1";
# subnet = "fd10:88::/64";
#}
{
gateway = "fd10:88::1";
subnet = "fd10:88::/64";
}
];
};
};