From bbeb58db579de0c92bcdbe2f27f0d0f2f706e1ed Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Tue, 17 Jan 2023 21:57:39 +0000 Subject: [PATCH] feat: initial base config for Vendetta --- machines/vendetta.nix | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 machines/vendetta.nix 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"; + }; + + + +}