feat: added backup config

(currently temp server, will be using hardware soon)
This commit is contained in:
silver 2023-06-23 23:52:31 +01:00
parent 7f4b72c6e2
commit 88353f3727
6 changed files with 276 additions and 6 deletions

59
machines/neuromancer.nix Normal file
View file

@ -0,0 +1,59 @@
/*
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";
ip_priv = "172.20.20.7";
hostname = "${name}.skynet.ie";
in {
imports = [
../applications/restic.nix
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = "root";
tags = [ "active" ];
};
skynet_dns.records = {
external = [
"${name} A ${ip_pub}"
];
reverse = [
"${builtins.substring 9 3 ip_pub} IN PTR ${hostname}."
];
};
services.skynet_backup = {
normal.backups = ["/etc/skynet"];
host = {
ip = ip_pub;
name = name;
};
server = {
enable = true;
};
};
}