From f8a3c3d6ce7fa7eb57af1cbe1fb3163cb08b7917 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Thu, 4 Jan 2024 21:51:21 +0530 Subject: [PATCH] update secrets example --- secrets.nix.example | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/secrets.nix.example b/secrets.nix.example index 042a4f5..8cf2e56 100644 --- a/secrets.nix.example +++ b/secrets.nix.example @@ -1,9 +1,23 @@ { + wireguard_config = { + peers = { + Proxy = { + name = "Proxy"; + endpoint = ""; + publicKey = ""; + persistentKeepalive = 20; + allowedIPs = [ + "x.x.x.x/xx" + "xxxx::/xx" + ]; + }; + }; + }; aria2_config = { rpc_secret = ""; }; frp_config = { - ip = ""; + server_addr = ""; token = " frpc connection>"; }; caddy_config = { @@ -20,4 +34,5 @@ sshPublicKey = ""; }; }; + phone.sshPublicKey = ""; }