ipv6 is broken for now
This commit is contained in:
parent
51c20a6579
commit
3d3dff4f27
2 changed files with 7 additions and 7 deletions
|
|
@ -43,7 +43,7 @@
|
||||||
token_url = "file://${config.age.secrets.forgejo-runner-token.path}";
|
token_url = "file://${config.age.secrets.forgejo-runner-token.path}";
|
||||||
};
|
};
|
||||||
container = {
|
container = {
|
||||||
enable_ipv6 = true;
|
#enable_ipv6 = true;
|
||||||
network = "podman";
|
network = "podman";
|
||||||
privileged = true;
|
privileged = true;
|
||||||
force_pull = true;
|
force_pull = true;
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
|
#boot.kernel.sysctl."net.ipv6.conf.all.forwarding" = true;
|
||||||
|
|
||||||
virtualisation.podman = {
|
virtualisation.podman = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
@ -12,16 +12,16 @@
|
||||||
};
|
};
|
||||||
defaultNetwork.settings = {
|
defaultNetwork.settings = {
|
||||||
dns_enabled = true;
|
dns_enabled = true;
|
||||||
ipv6_enabled = true;
|
#ipv6_enabled = true;
|
||||||
subnets = [
|
subnets = [
|
||||||
{
|
{
|
||||||
gateway = "10.88.0.1";
|
gateway = "10.88.0.1";
|
||||||
subnet = "10.88.0.0/16";
|
subnet = "10.88.0.0/16";
|
||||||
}
|
}
|
||||||
{
|
#{
|
||||||
gateway = "fd10:88::1";
|
# gateway = "fd10:88::1";
|
||||||
subnet = "fd10:88::/64";
|
# subnet = "fd10:88::/64";
|
||||||
}
|
#}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue