VEGAS/minecraft: disable num server

This commit is contained in:
Num Padd 2022-10-10 21:29:21 +01:00 committed by Max
parent 3ff62551c0
commit c8eb3fc8be
2 changed files with 0 additions and 18 deletions

View file

@ -1,7 +1,6 @@
{ {
services.modded-minecraft-servers.eula = true; services.modded-minecraft-servers.eula = true;
imports = [ imports = [
./num.nix
./customer-0fyy6ksf.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";
};
};
}