Brendan Golden
b46eca16b0
All checks were successful
Build_Deploy / linter (push) Successful in 4s
Build_Deploy / build (push) Successful in 14s
Build_Deploy / deploy_dns (push) Successful in 50s
Build_Deploy / deploy_active (active) (push) Successful in 1m1s
Build_Deploy / deploy_active (active-core) (push) Successful in 1m16s
Build_Deploy / deploy_active (active-ext) (push) Successful in 30s
44 lines
736 B
Nix
44 lines
736 B
Nix
/*
|
|
|
|
Name: https://theportalwiki.com/wiki/Wheatley
|
|
Why: Whereever GLaDOS is Wheatly is not too far away
|
|
Type: VM
|
|
Hardware: -
|
|
From: 2023
|
|
Role: Gitlab Runner
|
|
Notes:
|
|
*/
|
|
{
|
|
pkgs,
|
|
lib,
|
|
nodes,
|
|
...
|
|
}: let
|
|
# name of the server, sets teh hostname and record for it
|
|
name = "wheatly";
|
|
ip_pub = "193.1.99.78";
|
|
hostname = "${name}.skynet.ie";
|
|
host = {
|
|
ip = ip_pub;
|
|
name = name;
|
|
hostname = hostname;
|
|
};
|
|
in {
|
|
imports = [
|
|
../applications/git/forgejo_runner.nix
|
|
];
|
|
|
|
deployment = {
|
|
targetHost = hostname;
|
|
targetPort = 22;
|
|
targetUser = null;
|
|
|
|
tags = ["active-git"];
|
|
};
|
|
|
|
services.skynet = {
|
|
host = host;
|
|
backup.enable = true;
|
|
forgejo_runner.enable = true;
|
|
};
|
|
}
|