nixos/machines/calculon.nix

54 lines
749 B
Nix
Raw Normal View History

/*
Name:
Why: Speed everything up
Type: VM
Hardware: -
From: 2024
Role: Nix Cache
Notes:
*/
{
pkgs,
lib,
nodes,
inputs,
...
}: let
name = "calculon";
ip_pub = "193.1.99.82";
hostname = "${name}.skynet.ie";
in {
imports = [
../applications/nix_cache/nix_cache.nix
];
deployment = {
targetHost = ip_pub;
targetPort = 22;
targetUser = null;
2024-05-12 03:57:26 +00:00
tags = ["active"];
};
# it has two network devices so two
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 = {
ip = ip_pub;
name = name;
};
}