25 lines
444 B
Nix
25 lines
444 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 = "";
|
|
};
|
|
|
|
"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 = "";
|
|
};
|
|
}
|