diff --git a/machines/vendetta.nix b/machines/vendetta.nix new file mode 100644 index 0000000..3d5a41f --- /dev/null +++ b/machines/vendetta.nix @@ -0,0 +1,36 @@ +/* + + Name: https://masseffect.fandom.com/wiki/Vendetta + Why: Vendetta held troves of important data waiting for folks to request it. + Type: VM + Hardware: - + From: 2023 + Role: DNS Server + Notes: + +*/ + +{ pkgs, lib, nodes, ... }: +let + # ip_pub = "193.1.99.120"; + ip_pub = "192.168.1.157"; + ip_priv = "172.20.20.3"; + # hostname = "vendetta.skynet.ie"; + hostname = "test01.home.brendan.ie"; + + +in { + imports = [ + # applications for this particular server + + ]; + + deployment = { + targetHost = hostname; + targetPort = 22; + targetUser = "root"; + }; + + + +}