/* 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"; host = { ip = ip_pub; name = name; hostname = hostname; interface = "eno1"; }; in { imports = [ ./hardware/RM007.nix ]; deployment = { targetHost = hostname; targetPort = 22; targetUser = null; tags = ["active-core"]; }; services.skynet = { host = host; backup.server.enable = true; }; }