37 lines
602 B
Nix
37 lines
602 B
Nix
|
/*
|
||
|
|
||
|
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";
|
||
|
};
|
||
|
|
||
|
|
||
|
|
||
|
}
|