Brendan Golden
9ac74c1c86
All checks were successful
Build_Deploy / linter (push) Successful in 5s
Build_Deploy / build (push) Successful in 15s
Build_Deploy / deploy_dns (push) Successful in 52s
Build_Deploy / deploy_active (active) (push) Successful in 1m1s
Build_Deploy / deploy_active (active-core) (push) Successful in 1m19s
Build_Deploy / deploy_active (active-ext) (push) Successful in 34s
56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
/*
|
|
Name: Link to where information on the name can be found
|
|
Why: Why is it named this
|
|
Type: VM/Physical
|
|
Hardware: - if its a VM, the hardware (PowerEdge r210) if its physical
|
|
From: 2023/2024/2025/...
|
|
Role: What role does it have in teh cluster
|
|
Notes:
|
|
*/
|
|
{
|
|
pkgs,
|
|
lib,
|
|
nodes,
|
|
...
|
|
}: let
|
|
# name of the server, sets teh hostname and record for it
|
|
name = "name";
|
|
# Assigned IP address
|
|
ip_pub = "193.1.99.000";
|
|
|
|
# dont need to change these
|
|
hostname = "${name}.skynet.ie";
|
|
host = {
|
|
ip = ip_pub;
|
|
name = name;
|
|
hostname = hostname;
|
|
};
|
|
in {
|
|
# what configurrations to import, email in this example
|
|
imports = [
|
|
../applications/email.nix
|
|
];
|
|
|
|
deployment = {
|
|
# dont need to change these
|
|
targetHost = hostname;
|
|
targetPort = 22;
|
|
targetUser = null;
|
|
|
|
# deployment option: active-dns/active-core/active-ext/active
|
|
tags = [
|
|
"active"
|
|
];
|
|
};
|
|
|
|
services.skynet = {
|
|
# pass in the details of the host server
|
|
host = host;
|
|
|
|
# enable the backup service
|
|
backup.enable = true;
|
|
|
|
# enable the imported service
|
|
email.enable = true;
|
|
};
|
|
}
|