feat: initial base config for Vendetta

This commit is contained in:
silver 2023-01-17 21:57:39 +00:00
parent 536f7856dd
commit bbeb58db57

36
machines/vendetta.nix Normal file
View file

@ -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";
};
}