aboutsummaryrefslogtreecommitdiff
path: root/hosts/wg_peers.nix
blob: 36fb465e45c2844899139099c1c0ee9485dbb572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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 = "";
    };
  };
}