Change a lot, mostly adding 3 Minecraft servers and Velocity
This commit is contained in:
parent
1d3c95e680
commit
c6accc294d
37 changed files with 1732 additions and 200 deletions
|
@ -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."/" = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue