From 75d033c63cbb5bfd4254f4c8bb4446a966c72f45 Mon Sep 17 00:00:00 2001 From: satr14 Date: Sun, 3 May 2026 19:18:33 +0700 Subject: [PATCH 1/2] code cleanup and dev changes --- modules/system/homelab/mc.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/system/homelab/mc.nix b/modules/system/homelab/mc.nix index acdb803..ab2de9b 100644 --- a/modules/system/homelab/mc.nix +++ b/modules/system/homelab/mc.nix @@ -19,11 +19,11 @@ in { enable = true; autoStart = true; restart = "always"; - enableReload = true; + enableReload = false; # NOTE: development phase, disable in production package = pkgs.fabricServers.fabric-1_21_11.override { - loaderVersion = "0.19.2"; jre_headless = pkgs.javaPackages.compiler.temurin-bin.jre-25; + loaderVersion = "0.19.2"; }; jvmOpts = let @@ -67,7 +67,7 @@ in { serverProperties = { server-port = 25565; server-name = "Digit Association"; - motd = "§lSeason 3§r - §dExplorers Creativity 🔥"; + motd = "§lSeason 3 TESTING§r - §dExplorers Creativity 🔥"; difficulty = "normal"; gamemode = "survival"; From 6b13c4bf509b987965fe732a2357d998465ab216 Mon Sep 17 00:00:00 2001 From: satr14 Date: Sun, 3 May 2026 19:20:17 +0700 Subject: [PATCH 2/2] hash update --- modules/system/homelab/mc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/homelab/mc.nix b/modules/system/homelab/mc.nix index ab2de9b..4491759 100644 --- a/modules/system/homelab/mc.nix +++ b/modules/system/homelab/mc.nix @@ -3,7 +3,7 @@ auth-server = "https://mc.satr14.my.id"; # TODO: self hosted drasl server modpack = pkgs.fetchPackwizModpack { url = "https://git.satr14.my.id/satr14/server-modpack/raw/commit/e8a47c7f6dbf26cf436d40d68eed17ac4a98decc/pack.toml"; - packHash = ""; + packHash = "sha256-VJ018vTOASlS9Ndp+dI2N5bla2lQcDxY+MPS2qXYufE="; }; in { imports = [ inputs.mc.nixosModules.minecraft-servers ];