From 8cd38b29a3f27ce3779d0fefeaeff42af1e410e5 Mon Sep 17 00:00:00 2001 From: muon Date: Tue, 27 Aug 2024 22:18:31 +0000 Subject: [PATCH] Fix merge --- modules/nixos/core/network.nix | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/modules/nixos/core/network.nix b/modules/nixos/core/network.nix index 271015c..c2cf4d2 100644 --- a/modules/nixos/core/network.nix +++ b/modules/nixos/core/network.nix @@ -33,26 +33,15 @@ privateKeyFile = "/home/muon/wireguard-keys/private"; -<<<<<<< HEAD peers = [ { publicKey = "2RF8GmTZwQdzVm2l2piYy6U0qiMU3wSxC7Lt8urAjwA="; allowedIPs = [ "0.0.0.0/0" ]; - endpoint = "{server ip}:51820"; + endpoint = "93.95.230.11:51820"; persistentKeepalive = 25; } ]; -======= - peers = [ - { - publicKey = "2RF8GmTZwQdzVm2l2piYy6U0qiMU3wSxC7Lt8urAjwA="; - allowedIPs = [ "0.0.0.0/0" ]; - endpoint = "93.95.230.11:51820"; - persistentKeepalive = 25; - } - ]; - }; ->>>>>>> 72a6e123de1f980f2e2e2bc6dbbf666b396660eb + }; }; };