Files
infrastructure/machines/modules/malobeo/peers.nix
kalipso b6aef85860
All checks were successful
Evaluate Hydra Jobs / eval-hydra-jobs (push) Successful in 3m57s
[vpn] init wireguard
2024-12-17 23:04:50 +01:00

25 lines
488 B
Nix

{
"vpn" = {
role = "server";
publicIp = "5.9.153.217";
ips = [ "10.100.0.1/24" ];
allowedIPs = [ "10.100.0.0/24" ];
listenPort = 51821;
publicKey = "hF9H10Y8Ar7zvZXFoNM8LSoaYFgPCXv30c54SSEucX4=";
};
"fanny" = {
role = "client";
ips = [ "10.100.0.2/24" ];
allowedIPs = [ "10.100.0.0/24" ];
publicKey = "";
};
"test" = {
role = "client";
ips = [ "10.100.0.3/24" ];
allowedIPs = [ "10.100.0.0/24" ];
publicKey = "";
};
}