Minetest Server: Difference between revisions
imported>Nix m add Server category |
imported>Nix m add Software/Applications subcategory |
||
Line 22: | Line 22: | ||
[[Category:Server]] | [[Category:Server]] | ||
[[Category:Applications]] |
Revision as of 06:10, 20 September 2021
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 'systemct'
systemctl start minetest-server.service
systemctl stop minetest-server.service
Additional options can be found in the NixOS options search