nixos/machines/vigil.nix

57 lines
977 B
Nix
Raw Normal View History

2023-01-25 11:48:44 +00:00
/*
Name: https://masseffect.fandom.com/wiki/Vigil
Why: Counterpart to Vendetta
Type: VM
Hardware: -
From: 2023
Role: DNS Server
Notes:
*/
{ pkgs, lib, nodes, ... }:
let
name = "vigil";
ip_pub = "193.1.99.109";
ip_priv = "172.20.20.4";
hostname = "${name}.skynet.ie";
2023-01-25 11:48:44 +00:00
in {
imports = [
2023-06-15 21:02:30 +00:00
2023-01-25 11:48:44 +00:00
];
deployment = {
targetHost = ip_pub;
2023-01-25 11:48:44 +00:00
targetPort = 22;
targetUser = "root";
2023-04-20 13:09:36 +00:00
2023-04-20 22:15:59 +00:00
tags = [ "active" "dns" ];
2023-01-25 11:48:44 +00:00
};
2023-07-15 14:05:57 +00:00
services.skynet_backup = {
host = {
ip = ip_pub;
name = name;
};
};
2023-01-25 11:48:44 +00:00
skynet_dns = {
server = {
enable = true;
# secondary dns server (ns2)
primary = false;
ip = ip_pub;
};
2023-01-25 11:48:44 +00:00
# this server will have to have dns records
records = [
# vigil IN A 193.1.99.109
{record=name; r_type="A"; value=ip_pub; server=true;}
# 109 IN PTR vigil.skynet.ie.
{record=ip_pub; r_type="PTR"; value=hostname;}
];
2023-01-25 11:48:44 +00:00
};
}