43 lines
595 B
Nix
43 lines
595 B
Nix
|
/*
|
||
|
|
||
|
Name: https://hitchhikers.fandom.com/wiki/Deep_Thought
|
||
|
Why: Our home(page)
|
||
|
Type: VM
|
||
|
Hardware: -
|
||
|
From: 2023
|
||
|
Role: Public Backup
|
||
|
Notes:
|
||
|
*/
|
||
|
{
|
||
|
pkgs,
|
||
|
lib,
|
||
|
nodes,
|
||
|
inputs,
|
||
|
...
|
||
|
}: let
|
||
|
name = "deepthought";
|
||
|
ip_pub = "193.1.99.112";
|
||
|
hostname = "${name}.skynet.ie";
|
||
|
host = {
|
||
|
ip = ip_pub;
|
||
|
name = name;
|
||
|
hostname = hostname;
|
||
|
};
|
||
|
in {
|
||
|
imports = [
|
||
|
];
|
||
|
|
||
|
deployment = {
|
||
|
targetHost = ip_pub;
|
||
|
targetPort = 22;
|
||
|
targetUser = null;
|
||
|
|
||
|
tags = ["active-core"];
|
||
|
};
|
||
|
|
||
|
services.skynet = {
|
||
|
host = host;
|
||
|
backup.nuked.enable = true;
|
||
|
};
|
||
|
}
|