summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
Diffstat (limited to 'system')
-rw-r--r--system/nano.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/system/nano.nix b/system/nano.nix
index bda0b0d4..5de5d887 100644
--- a/system/nano.nix
+++ b/system/nano.nix
@@ -52,6 +52,13 @@ in
     "tcp_lp"
   ];
   boot.kernel.sysctl = {
+    "net.ipv6.conf.all.accept_ra" = 0;
+    "net.ipv6.conf.all.autoconf" = 0;
+    "net.ipv6.conf.all.use_tempaddr" = 0;
+
+    "net.ipv6.conf.${wan}.accept_ra" = 2;
+    "net.ipv6.conf.${wan}.autoconf" = 1;
+
     "net.ipv4.tcp_slow_start_after_idle" = 0;
     "net.ipv4.tcp_ecn" = 1;
     "net.ipv4.tcp_fastopen" = "0x3";
@@ -296,6 +303,9 @@ in
     tree
     lsof
     knot-dns
+    ethtool
+    tcpdump
+    conntrack-tools
   ];
 
   programs.fish.enable = true;