nixos/machines/galatea.nix

59 lines
1 KiB
Nix
Raw Normal View History

2023-01-25 11:48:44 +00:00
/*
Name: https://en.wikipedia.org/wiki/Galatea_(mythology)
Why: Created as a product of artistic expression
Type: VM
Hardware: -
From: 2023
Role: Icecast server for ULFM
Notes:
*/
{ pkgs, lib, nodes, config, ... }:
let
# name of the server, sets teh hostname and record for it
name = "galatea";
ip_pub = "193.1.99.111";
ip_priv = "172.20.20.6";
hostname = "${name}.skynet.ie";
2023-01-25 11:48:44 +00:00
in {
imports = [
2023-04-21 00:22:16 +00:00
# general stuff for config
2023-01-25 11:48:44 +00:00
../applications/dns.nix
2023-04-21 00:44:11 +00:00
2023-04-21 00:22:16 +00:00
# specific to tis server
2023-04-21 00:44:11 +00:00
../applications/ulfm.nix
2023-01-25 11:48:44 +00:00
];
deployment = {
targetHost = hostname;
targetPort = 22;
targetUser = "root";
2023-04-21 00:22:16 +00:00
tags = [ "active" ];
2023-01-25 11:48:44 +00:00
};
skynet_dns.records = {
external = [
"${name} A ${ip_pub}"
];
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-24 14:59:22 +00:00
services.skynet_ulfm = {
enable = true;
host = {
# pass in teh ip (used for firewall)
ip = ip_pub;
# the name is used for dns
name = name;
};
};
2023-01-25 11:48:44 +00:00
}