/* 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"; in { imports = [ ../applications/ulfm.nix ]; deployment = { targetHost = hostname; targetPort = 22; targetUser = "root"; tags = [ "active" ]; }; skynet_dns.records = { external = [ "${name} A ${ip_pub}" ]; reverse = [ "${builtins.substring 9 3 ip_pub} IN PTR ${hostname}." ]; }; services.skynet_ulfm = { enable = true; host = { # pass in teh ip (used for firewall) ip = ip_pub; # the name is used for dns name = name; }; }; }