diff options
| author | Mel <mel@rnrd.eu> | 2025-08-27 13:14:42 +0200 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-08-27 13:14:42 +0200 |
| commit | 8a901c24b029719cc8d3ff355f95bceb1dc93b60 (patch) | |
| tree | 0011d01f53a4e03dd571063608148cd899a26e8c /machines/taupe | |
| parent | 8df556f5552ed05715514c5b61a7226b1f176591 (diff) | |
| download | network-8a901c24b029719cc8d3ff355f95bceb1dc93b60.tar.zst network-8a901c24b029719cc8d3ff355f95bceb1dc93b60.zip | |
Move WireGuard server peer definitions to configuration option
Signed-off-by: Mel <mel@rnrd.eu>
Diffstat (limited to 'machines/taupe')
| -rw-r--r-- | machines/taupe/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/machines/taupe/default.nix b/machines/taupe/default.nix index 643c939..ef3fc6a 100644 --- a/machines/taupe/default.nix +++ b/machines/taupe/default.nix @@ -26,6 +26,23 @@ wireguard.server = { enable = true; externalInterface = "enp1s0"; + + peers = { + mel = { + key = "vnZoHXapCLLUhZ8A8R5W0iJ8LpWVLve29z41kkoT0BU="; + ip = 2; + }; + + andrei = { + key = "qqU4uYImLfUohIwl4KBshPtTINFcs0JVALjbmwpfxRg="; + ip = 3; + }; + + sergo = { + key = "qbZGMNIDZFCJC6SHtlyNIlIdGWHELceXClJCcagrj2Y="; + ip = 4; + }; + }; }; }; |
