Compare commits

..

2 Commits

Author SHA1 Message Date
a4201139b6
nullbox/mcserver: disable shim package IT WORKS :3 2024-05-28 23:56:30 -04:00
ee9f6db680
flake.lock: update nix-minecraft 2024-05-28 23:56:14 -04:00
2 changed files with 7 additions and 6 deletions

6
flake.lock generated
View File

@ -529,11 +529,11 @@
]
},
"locked": {
"lastModified": 1716859343,
"narHash": "sha256-MymVdhYLcuYpdrETkPUKMwjwo97Gvro/pP4zYvdzrRM=",
"lastModified": 1716948931,
"narHash": "sha256-wP2A/wbxE7h8u5iwlogkEevsIvx/dJmZlyoyy/2x3rE=",
"owner": "infinidoge",
"repo": "nix-minecraft",
"rev": "dc572cf73cd5a5630d28bcdb98adf1d65983aaef",
"rev": "ab4790259bf8ed20f4417de5a0e5ee592094c7c3",
"type": "github"
},
"original": {

View File

@ -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;
};
};
};