From fe23b7745ff951cc0185d5d2b422cebb31685171 Mon Sep 17 00:00:00 2001 From: clerie Date: Thu, 8 May 2025 16:31:33 +0200 Subject: [PATCH] configuration/dn42: Remove obsolete configuration --- configuration/dn42/default.nix | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 configuration/dn42/default.nix diff --git a/configuration/dn42/default.nix b/configuration/dn42/default.nix deleted file mode 100644 index 93ae00e..0000000 --- a/configuration/dn42/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ pkgs, ... }: - -{ - environment.systemPackages = with pkgs; [ - wireguard-tools - ]; - - boot.kernel.sysctl = { - "net.ipv4.ip_forward" = true; - "net.ipv6.conf.all.forwarding" = true; - }; - - networking.firewall.checkReversePath = false; - - # Open Firewall for BGP - networking.firewall.allowedTCPPorts = [ 179 ]; - # Open Fireall for OSPF - networking.firewall.extraCommands = '' - ip6tables -A INPUT -p ospfigp -j ACCEPT - iptables -A INPUT -p ospfigp -j ACCEPT - ''; -}