Difference between revisions of "Minetest Server"

From NixOS Wiki
Jump to: navigation, search
m (user should be verbatim text)
(search link was using channel 21.05, switch to unstable to have a working link)
Line 19: Line 19:
 
systemctl stop minetest-server.service
 
systemctl stop minetest-server.service
 
</syntaxhighlight>
 
</syntaxhighlight>
Additional options can be found in the NixOS options [https://search.nixos.org/options?channel=21.05&from=0&size=50&sort=relevance&query=minetest-server search]
+
Additional options can be found in the NixOS options [https://search.nixos.org/options?channel=unstable&from=0&size=50&sort=relevance&query=minetest-server search]
  
 
[[Category:Server]]
 
[[Category:Server]]
 
[[Category:Applications]]
 
[[Category:Applications]]

Revision as of 07:51, 27 September 2022

Minetest is a voxel game engine than allows for many different games to be played.

Minetest Server Setup

Below is a basic configuration that will setup the Minetest server and use port 30000.

{
 services.minetest-server = {
   enable = true;
   port = 30000;
 };
}

With this setup, a user named minetest will be created, along with its home folder '/var/lib/minetest'. All standard Minetest configuration and world files are stored in /var/lib/minetest/.minetest.

The Minetest service will be started after running nixos-rebuild. It can be controlled using systemctl

systemctl start minetest-server.service
systemctl stop minetest-server.service

Additional options can be found in the NixOS options search