diff --git a/hosts/rico2/wireguard.nix b/hosts/rico2/wireguard.nix index ae155fd..1fc5313 100644 --- a/hosts/rico2/wireguard.nix +++ b/hosts/rico2/wireguard.nix @@ -14,8 +14,8 @@ in { generatePrivateKeyFile = true; listenPort = 51820; peers = with peers; [ - Proxy - Skipper + Proxy.peer + Skipper.peer ]; }; }; diff --git a/hosts/skipper/wireguard.nix b/hosts/skipper/wireguard.nix index 6926a3f..d002c4d 100644 --- a/hosts/skipper/wireguard.nix +++ b/hosts/skipper/wireguard.nix @@ -14,8 +14,8 @@ in { generatePrivateKeyFile = true; listenPort = 51820; peers = with peers; [ - Proxy - Rico2 + Proxy.peer + Rico2.peer ]; }; };