Change a lot, mostly adding 3 Minecraft servers and Velocity

This commit is contained in:
Jimbo 2024-08-30 01:17:50 -04:00
parent 1d3c95e680
commit c6accc294d
37 changed files with 1732 additions and 200 deletions

View file

@ -1,18 +1,16 @@
let
secrets = import ../modules/secrets.nix;
in {
{outputs, ...}: {
# Icecast, replacing Azuracast maybe
services = {
icecast = {
enable = true;
listen.port = 265;
hostname = "icecast.${secrets.jimDomain}";
hostname = "icecast.${outputs.secrets.jimDomain}";
admin = {
user = "jimbo";
password = "${secrets.castPass}";
password = "${outputs.secrets.castPass}";
};
};
nginx.virtualHosts."icecast.${secrets.jimDomain}" = {
nginx.virtualHosts."icecast.${outputs.secrets.jimDomain}" = {
enableACME = true;
forceSSL = true;
locations."/" = {