ma legacy_v4: this is a sad day

This commit is contained in:
makefu 2020-06-17 09:50:53 +02:00
parent d53b0e21a4
commit afa75b6e2e

8
2configs/legacy_v4.nix Normal file
View file

@ -0,0 +1,8 @@
{ networking.enableIPv6 = false;
boot.kernel.sysctl = {
"net.ipv6.conf.all.disable_ipv6" = 1;
"net.ipv6.conf.default.disable_ipv6" = 1;
"net.ipv6.conf.lo.disable_ipv6" = 1;
};
boot.kernelParams = [ "ipv6.disable=1" ];
}