feat: got minecraft servers sorted

This commit is contained in:
Nick 2025-11-27 01:17:38 -06:00
parent 4c3ab7728c
commit 1f43844e90
8 changed files with 20 additions and 21 deletions

View file

@ -8,7 +8,6 @@ let
label = "Minecraft";
name = "minecraft";
world = "world0";
secrets = "${secretPath}/${name}";
in
{
label = label;
@ -29,9 +28,9 @@ in
path0 = "${varPath}/${name}";
};
mntPaths = {
path0 = "${mntPath}/${name}-${world}";
path0 = "${mntPath}/${name}/${world}";
};
secretPaths = {
path0 = secrets;
path0 = "${secretPath}/${name}";
};
}

View file

@ -8,7 +8,6 @@ let
label = "Minecraft";
name = "minecraft";
world = "world1";
secrets = "${secretPath}/${name}";
in
{
label = label;
@ -29,9 +28,9 @@ in
path0 = "${varPath}/${name}";
};
mntPaths = {
path0 = "${mntPath}/${name}-${world}";
path0 = "${mntPath}/${name}/${world}";
};
secretPaths = {
path0 = secrets;
path0 = "${secretPath}/${name}";
};
}