nixos/machines/retired/optimus.nix

46 lines
717 B
Nix
Raw Permalink Normal View History

2023-01-25 11:48:44 +00:00
/*
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:
2023-01-25 11:48:44 +00:00
*/
{
pkgs,
lib,
nodes,
arion,
...
}: let
2023-01-25 11:48:44 +00:00
# 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;
};
2023-01-25 11:48:44 +00:00
in {
imports = [
../applications/games.nix
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = null;
tags = ["active"];
2023-01-25 11:48:44 +00:00
};
services.skynet = {
host = host;
backup.enable = true;
games.enable = true;
2023-05-24 15:39:02 +00:00
};
}