From 8a58370c76fb1fed3ef79f3fffa1d0720d2bd594 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 16 Mar 2025 18:03:52 +0100 Subject: [PATCH] chore: delete wireguard (why was this committed lol) --- modules/core/wireguard.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 modules/core/wireguard.nix diff --git a/modules/core/wireguard.nix b/modules/core/wireguard.nix deleted file mode 100644 index efcbb09..0000000 --- a/modules/core/wireguard.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ ... }: -{ - networking.wg-quick.interfaces = { - wg0 = { - address = [ "10.7.0.4/24" ]; - dns = [ "9.9.9.9" "149.112.112.112" ]; - privateKeyFile = "/root/wireguard-keys/privatekey"; - - peers = [{ - publicKey = "uE40chWhiPpnNHcgnLhMfOUfzotS6hK+dWwI1sIFcUw="; - presharedKeyFile = "/root/wireguard-keys/preshared_from_peer0_key"; - allowedIPs = [ "0.0.0.0/0" "::/0" ]; - endpoint = "213.210.34.27:58192"; - persistentKeepalive = 25; - }]; - }; - }; -}