commit df90773540b8c125dc7f6becb0caa09eabb2bdc4 parent 22fd2e67a2d9ea95f1e67bb6cf6daa50c22e5c58 Author: Vincent Demeester <vincent@sbr.pm> Date: Fri, 19 Aug 2022 12:20:37 +0000 systems/wakasu: use the correct address for wireguard Signed-off-by: Vincent Demeester <vincent@sbr.pm> Diffstat:
M | systems/hosts/wakasu.nix | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/systems/hosts/wakasu.nix b/systems/hosts/wakasu.nix @@ -99,12 +99,12 @@ in ''; wireguard = { enable = true; - ips = [ "${metadata.hosts.naruhodo.wireguard.addrs.v4}/24" ]; + ips = [ "${metadata.hosts.wakasu.wireguard.addrs.v4}/24" ]; endpoint = endpointIP; endpointPort = endpointPort; endpointPublicKey = endpointPublicKey; }; - # syncthing.guiAddress = "${metadata.hosts.naruhodo.wireguard.addrs.v4}:8384"; + syncthing.guiAddress = "${metadata.hosts.wakasu.wireguard.addrs.v4}:8384"; }; }