feat: initial base config for Vendetta
This commit is contained in:
parent
536f7856dd
commit
bbeb58db57
1 changed files with 36 additions and 0 deletions
36
machines/vendetta.nix
Normal file
36
machines/vendetta.nix
Normal 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";
|
||||
};
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in a new issue