diff options
| author | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-08 11:33:27 -0600 |
|---|---|---|
| committer | Collin Williams <96917990+bluedragon1221@users.noreply.github.com> | 2026-01-08 11:33:27 -0600 |
| commit | 9bd9efe8b26ba34e0cbba3e281749a4e262558e0 (patch) | |
| tree | c790bcaf3c3d1804d09cfe0e589103c35b14bf17 /hosts | |
| parent | 806f697f17214212197f09a8c6aaf6da307e496f (diff) | |
in-progress wireguard configurion
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/wg_peers.nix | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/hosts/wg_peers.nix b/hosts/wg_peers.nix new file mode 100644 index 0000000..36fb465 --- /dev/null +++ b/hosts/wg_peers.nix @@ -0,0 +1,39 @@ +{ + "ganymede" = { + hub = { + domain = "williamsfam.us.com"; + port = 51823; + + ip_addr = "100.100.0.2"; + key = ""; + }; + }; + + "mercury" = { + spoke = { + ip_addr = "100.100.0.5"; + key = ""; + }; + }; + + "jupiter" = { + spoke = { + ip_addr = "100.100.0.10"; + key = ""; + }; + }; + + "terra" = { + spoke = { + ip_addr = "100.100.0.24"; + key = ""; + }; + }; + + "uranus" = { + spoke = { + ip_addr = "100.100.0.45"; + key = ""; + }; + }; +} |
