feat: added remote ip field

This commit is contained in:
Nick 2025-04-10 17:46:25 -05:00
parent b6a8aef44c
commit d740ec81ac
2 changed files with 4 additions and 0 deletions

View file

@ -60,6 +60,7 @@ let
domains = genOptions stringType "url";
dns = genOptions stringType "provider";
localhost = genOptions stringType "address";
remotehost = genOptions stringType "address";
email = genOptions stringType "address";
sops = genOptions stringType "path";
paths = genOptions stringType "path";

View file

@ -23,4 +23,7 @@ in
address2 = "192.168.50.1"; # Router
address3 = "192.168.50.0"; # Router
};
remotehost = {
address0 = "24.76.173.0";
};
}