nixos/machines/optimus.nix

82 lines
1.8 KiB
Nix
Raw 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:
*/
{ pkgs, lib, nodes, arion, ... }:
let
# name of the server, sets teh hostname and record for it
name = "optimus";
ip_pub = "193.1.99.112";
ip_priv = "172.20.20.7";
hostname = "${name}.skynet.ie";
2023-01-25 11:48:44 +00:00
in {
imports = [
# applications for this particular server
../applications/firewall.nix
../applications/dns.nix
../applications/games.nix
2023-05-18 20:59:23 +00:00
2023-05-21 00:38:19 +00:00
../applications/ldap_client.nix
2023-05-18 20:59:23 +00:00
# for testing
../applications/ldap.nix
2023-01-25 11:48:44 +00:00
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = "root";
};
# these two are to be able to add the rules for firewall and dns
# open the firewall for this
skynet_firewall.forward = [
"ip daddr ${ip_pub} tcp dport 80 counter packets 0 bytes 0 accept"
"ip daddr ${ip_pub} tcp dport 443 counter packets 0 bytes 0 accept"
"ip daddr ${ip_pub} tcp dport 25565 counter packets 0 bytes 0 accept"
2023-01-25 11:48:44 +00:00
];
skynet_dns.records = {
external = [
"${name} A ${ip_pub}"
];
cname = [
# the games are each going to have a subdomain on this
"games CNAME ${name}"
];
2023-05-21 18:05:47 +00:00
reverse = [
"${builtins.substring 9 3 ip_pub} IN PTR ${name}"
];
2023-01-25 11:48:44 +00:00
};
2023-05-18 20:59:23 +00:00
# we use this to pass in teh relevent infomation to the
services.skynet_ldap = {
enable = true;
host = {
# pass in teh ip (used for firewall)
ip = ip_pub;
# the name is used for dns
name = name;
};
};
2023-05-21 00:38:19 +00:00
services.skynet_ldap_client = {
enable = true;
# skynet-admin will always be added
groups = [ "skynet-users"];
2023-05-18 20:59:23 +00:00
};
2023-05-21 00:38:19 +00:00
}