feat: retiring Optimus and teh games server that was hosted on it.

Now fully using Pterodactyl
This commit is contained in:
silver 2024-06-02 21:27:27 +01:00
parent 1fb2bba4ce
commit cbc5af9b53
Signed by: silver
GPG key ID: 54E2C71918E93B74
6 changed files with 2 additions and 5 deletions

View file

@ -0,0 +1,45 @@
/*
Name: https://en.wikipedia.org/wiki/Optimus_Prime
Why: Created to sell toys so this vm is for games
Type: VM
Hardware: -
From: 2023
Role: Game host
Notes:
*/
{
pkgs,
lib,
nodes,
arion,
...
}: let
# name of the server, sets teh hostname and record for it
name = "optimus";
ip_pub = "193.1.99.112";
hostname = "${name}.skynet.ie";
host = {
ip = ip_pub;
name = name;
hostname = hostname;
};
in {
imports = [
../applications/games.nix
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = null;
tags = ["active"];
};
services.skynet = {
host = host;
backup.enable = true;
games.enable = true;
};
}