summaryrefslogtreecommitdiff
path: root/modules/desktop/networking/ipv6.nix
blob: 274c1aebf198545532181f0a495f1a229d907e2e (plain) (blame)
1
2
3
4
5
6
7
8
9
{
  boot.kernel.sysctl = {
    "net.ipv6.conf.enp42s0.disable_ipv6" = true;
    "net.ipv6.conf.wlp4s0.disable_ipv6" = true;
    "net.ipv6.conf.tun0.disable_ipv6" = true;
  };

  networking.enableIPv6 = false;
}