summary refs log tree commit diff
path: root/modules/vpn.nix
diff options
context:
space:
mode:
authorMel <mel@rnrd.eu>2026-03-31 22:11:10 +0200
committerMel <mel@rnrd.eu>2026-03-31 22:11:10 +0200
commit2780fc65523814564153d92ab2d0f19be4ba0e02 (patch)
tree472904f62e920551dbaba896a524e01576b5ced1 /modules/vpn.nix
parent7d899f695a1d5a448226ed9479c0e4c52454f595 (diff)
downloadnetwork-2780fc65523814564153d92ab2d0f19be4ba0e02.tar.zst
network-2780fc65523814564153d92ab2d0f19be4ba0e02.zip
VLESS/Reality VPN configuration for DPI evasion
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'modules/vpn.nix')
-rw-r--r--modules/vpn.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/modules/vpn.nix b/modules/vpn.nix
deleted file mode 100644
index 6772c2a..0000000
--- a/modules/vpn.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ ... }:
-
-{
-  # these are the common peers that will want to access our hosts
-  # that run the vpn in different parts of the world.
-  foundation = {
-    wireguard.server = {
-      enable = true;
-      # has to be set by the individual server running the vpn:
-      # like, for example:
-      # externalInterface = "eth0";
-
-      peers = {
-        mel = {
-          key = "vnZoHXapCLLUhZ8A8R5W0iJ8LpWVLve29z41kkoT0BU=";
-          ip = 2;
-        };
-
-        andrei = {
-          key = "qqU4uYImLfUohIwl4KBshPtTINFcs0JVALjbmwpfxRg=";
-          ip = 3;
-        };
-
-        sergo = {
-          key = "qbZGMNIDZFCJC6SHtlyNIlIdGWHELceXClJCcagrj2Y=";
-          ip = 4;
-        };
-      };
-    };
-  };
-}