61 lines
1 KiB
Nix
61 lines
1 KiB
Nix
/*
|
|
|
|
Name: https://futurama.fandom.com/wiki/Calculon
|
|
Why: Public Service server
|
|
Type: VM
|
|
Hardware: -
|
|
From: 2024
|
|
Role: Public services such as Nix Cache, Open governance stuff.
|
|
Notes:
|
|
*/
|
|
{
|
|
pkgs,
|
|
lib,
|
|
nodes,
|
|
inputs,
|
|
...
|
|
}: let
|
|
name = "calculon";
|
|
ip_pub = "193.1.99.82";
|
|
hostname = "${name}.skynet.ie";
|
|
|
|
host = {
|
|
ip = ip_pub;
|
|
name = name;
|
|
};
|
|
in {
|
|
imports = [
|
|
../applications/nix_cache/nix_cache.nix
|
|
../applications/open_governance/open_governance.nix
|
|
../applications/open_governance/keyserver.nix
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = hostname;
|
|
targetPort = 22;
|
|
targetUser = null;
|
|
|
|
tags = ["active"];
|
|
};
|
|
|
|
# it has two network devices so two
|
|
services.skynet.dns.records = [
|
|
{
|
|
record = name;
|
|
r_type = "A";
|
|
value = ip_pub;
|
|
server = true;
|
|
}
|
|
{
|
|
record = ip_pub;
|
|
r_type = "PTR";
|
|
value = hostname;
|
|
}
|
|
];
|
|
|
|
services.skynet = {
|
|
nix-cache.host = host;
|
|
open-governance.host = host;
|
|
keyserver.host = host;
|
|
};
|
|
}
|