Merge branch 'numshit' into 'master'

VEGAS/minecraft: disable num server

See merge request private-void/infrastructure!39
This commit is contained in:
Max Headroom 2022-10-17 09:24:50 +00:00
commit 9d3bd452a5
2 changed files with 0 additions and 18 deletions

View file

@ -1,7 +1,6 @@
{
services.modded-minecraft-servers.eula = true;
imports = [
./num.nix
./customer-0fyy6ksf.nix
];
}

View file

@ -1,17 +0,0 @@
{ config, inputs, pkgs, ... }:
{
links.mc-num = {};
services.modded-minecraft-servers.instances.num = {
enable = true;
rsyncSSHKeys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL5C7mC5S2gM0K6x0L/jNwAeQYbFSzs16Q73lONUlIkL" # max@TITAN
];
jvmPackage = inputs.self.packages.${pkgs.system}.jre17_standard;
jvmInitialAllocation = "2G";
jvmMaxAllocation = "8G";
serverConfig = {
server-port = config.links.mc-num.port;
motd = "Welcome to num's minecraft server";
};
};
}