From a4201139b642f0255f3def015a4e3cc014598143 Mon Sep 17 00:00:00 2001 From: NullBite Date: Tue, 28 May 2024 23:56:30 -0400 Subject: [PATCH] nullbox/mcserver: disable shim package IT WORKS :3 --- hosts/nullbox/mcserver.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hosts/nullbox/mcserver.nix b/hosts/nullbox/mcserver.nix index 9a9317a..b434d64 100644 --- a/hosts/nullbox/mcserver.nix +++ b/hosts/nullbox/mcserver.nix @@ -54,7 +54,6 @@ in enable = true; autoStart = true; modpack = notlite-modpack; - package = shimPackage; modpackSymlinks = [ "mods" ]; modpackFiles = [ "config/" "kubejs/" ]; serverProperties = { @@ -74,7 +73,7 @@ in in config.nixfiles.lib.minecraft.mkServer { enable = false; modpack = notlite-modpack; - package = shimPackage; + # package = shimPackage; autoStart = self.enable; whitelist = { YzumThreeEye = "3dad78e8-6979-404f-820e-952ce20964a0"; @@ -83,8 +82,10 @@ in }; modpackSymlinks = [ "mods" ]; modpackFiles = [ "config/" "kubejs/" ]; - serverProperties = { + serverProperties = rec { motd = "owo what's this (nix edition)"; + server-port = 25568; + "query.port" = server-port; }; }; };