From 30edf36801b0a89958ba2a3221d1df21b23d71b0 Mon Sep 17 00:00:00 2001 From: Danilo Reyes Date: Sun, 7 Jul 2024 15:06:21 -0600 Subject: [PATCH] enabled ipv6 on workstation --- hosts/workstation/hardware-configuration.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/workstation/hardware-configuration.nix b/hosts/workstation/hardware-configuration.nix index 910b6b4..fa2e9d1 100644 --- a/hosts/workstation/hardware-configuration.nix +++ b/hosts/workstation/hardware-configuration.nix @@ -19,9 +19,9 @@ kernelPackages = pkgs.linuxPackages_zen; kernel.sysctl = { "vm.swappiness" = 80; - "net.ipv6.conf.all.disable_ipv6" = 1; - "net.ipv6.conf.lo.disable_ipv6" = 1; - "net.ipv6.conf.default.disable_ipv6" = 1; + "net.ipv6.conf.all.disable_ipv6" = 0; + "net.ipv6.conf.lo.disable_ipv6" = 0; + "net.ipv6.conf.default.disable_ipv6" = 0; "net.ipv4.tcp_mtu_probing" = 1; }; loader = {