58 lines
No EOL
1.1 KiB
Nix
58 lines
No EOL
1.1 KiB
Nix
/*
|
|
|
|
Name: https://williamgibson.fandom.com/wiki/Neuromancer_(AI)
|
|
Why: A sibling to Wintermute, stores and archives memories.
|
|
Type: VM
|
|
Hardware: -
|
|
From: 2023
|
|
Role: Backup Server
|
|
Notes:
|
|
|
|
*/
|
|
|
|
{ pkgs, lib, nodes, ... }:
|
|
let
|
|
# name of the server, sets teh hostname and record for it
|
|
name = "neuromancer";
|
|
ip_pub = "193.1.99.80";
|
|
hostname = "${name}.skynet.ie";
|
|
|
|
in {
|
|
imports = [
|
|
./hardware/_base.nix
|
|
./hardware/RM007.nix
|
|
];
|
|
|
|
|
|
networking.hostName = name;
|
|
# this has to be defined for any physical servers
|
|
# vms are defined by teh vm host
|
|
networking.interfaces.eno1.ipv4.addresses = [
|
|
{
|
|
address = ip_pub;
|
|
prefixLength = 26;
|
|
}
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = hostname;
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
|
|
tags = [ "active-core" ];
|
|
};
|
|
|
|
skynet_dns.records = [
|
|
{record=name; r_type="A"; value=ip_pub; server=true;}
|
|
{record=ip_pub; r_type="PTR"; value=hostname;}
|
|
];
|
|
|
|
services.skynet_backup = {
|
|
server.enable = true;
|
|
host = {
|
|
ip = ip_pub;
|
|
name = name;
|
|
};
|
|
};
|
|
|
|
} |