diff options
author | Martin Fischer <martin@push-f.com> | 2025-06-22 20:51:26 +0200 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2025-06-23 05:00:36 +0200 |
commit | cbc8e2be99b8ddd2c1a95d4bfaa5a78bd70d2b4e (patch) | |
tree | eafc4d1922a10c0fef15caf9be82eacae3f1df6d /nixos/shared | |
parent | 3edcdc7fa1f3267a22c124d23eee3f46064d5e03 (diff) |
Diffstat (limited to 'nixos/shared')
-rw-r--r-- | nixos/shared/vpn.nix | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/nixos/shared/vpn.nix b/nixos/shared/vpn.nix index 59fb225..9cbcf45 100644 --- a/nixos/shared/vpn.nix +++ b/nixos/shared/vpn.nix @@ -2,7 +2,6 @@ { age.secrets.vpn-se-privKey.file = ../secrets/vpn-se-privKey.age; - age.secrets.vpn-se-presharedKey.file = ../secrets/vpn-se-presharedKey.age; # We're creating the wireguard interfaces in network namespaces so that # we can use them on demand: @@ -14,15 +13,14 @@ interfaces.wg-se = { interfaceNamespace = "se"; - ips = ["10.148.171.71/32"]; + ips = ["10.128.241.130/32"]; privateKeyFile = config.age.secrets.vpn-se-privKey.path; peers = [ { - publicKey = "PyLCXAQT8KkM4T+dUsOQfn+Ub3pGxfGlxkIApuig+hk="; - presharedKeyFile = config.age.secrets.vpn-se-presharedKey.path; + publicKey = "sb61ho9MhaxhJd6WSrryVmknq0r6oHEW7PP5i4lzAgM="; allowedIPs = ["0.0.0.0/0"]; - endpoint = "se3.vpn.airdns.org:1637"; + endpoint = "se.gw.xeovo.com:51820"; } ]; }; |