From 2b2917d34b3e3c6cae1ed470024d8d3cde57f325 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Wed, 24 May 2023 19:31:15 +0100 Subject: [PATCH] dns: set deploy target to be their IP not hostname, more reliable since theya re the dns servers --- machines/vendetta.nix | 2 +- machines/vigil.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/vendetta.nix b/machines/vendetta.nix index 42b4d8b..3b3d459 100644 --- a/machines/vendetta.nix +++ b/machines/vendetta.nix @@ -31,7 +31,7 @@ in { ]; deployment = { - targetHost = hostname; + targetHost = ip_pub; targetPort = 22; targetUser = "root"; diff --git a/machines/vigil.nix b/machines/vigil.nix index 69bda22..295c733 100644 --- a/machines/vigil.nix +++ b/machines/vigil.nix @@ -25,7 +25,7 @@ in { ]; deployment = { - targetHost = hostname; + targetHost = ip_pub; targetPort = 22; targetUser = "root";