summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/vpn-client.nix24
-rw-r--r--config/vpn-server.nix27
2 files changed, 0 insertions, 51 deletions
diff --git a/config/vpn-client.nix b/config/vpn-client.nix
deleted file mode 100644
index 9b493e8..0000000
--- a/config/vpn-client.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- port = (import ../data/aliases.nix).services.wireguard.port;
-in
-{
- networking.wireguard = {
- interfaces = {
- wg0 = {
- ips = [ "10.35.190.2/23" ];
- privateKeyFile = "/opt/secret/wireguard/wg0.key";
- listenPort = port;
- allowedIPsAsRoutes = false;
- peers = [
- {
- publicKey = "KT4sWKnlvPebJh0pYhGpiZksn4cCwKreB6fQCJV49F8=";
- endpoint = "dragon.orbekk.com:${toString port}";
- allowedIPs = ["0.0.0.0/0" "::/0"];
- }
- ];
- };
- };
- };
-}
-
diff --git a/config/vpn-server.nix b/config/vpn-server.nix
deleted file mode 100644
index 10b0c17..0000000
--- a/config/vpn-server.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ config, lib, pkgs, ... }:
-let
- port = (import ../data/aliases.nix).services.wireguard.port;
-in
-{
- networking = {
- firewall.allowedTCPPorts = [ port ];
- firewall.allowedUDPPorts = [ port ];
-
- wireguard = {
- interfaces = {
- wg0 = {
- ips = [ "10.35.190.1/23" ];
- privateKeyFile = "/opt/secret/wireguard/wg0.key";
- listenPort = port;
- allowedIPsAsRoutes = false;
- peers = [
- {
- publicKey = "ULWhaOsAaTu4cu84v3PM4DL7arxc/WNnzI/ic2k1KBU=";
- allowedIPs = ["0.0.0.0/0" "::/0"];
- }
- ];
- };
- };
- };
- };
-}