2023-05-31 07:44:47 +01:00
|
|
|
{pkgs, ...}: {
|
|
|
|
environment.systemPackages = with pkgs; [tmux];
|
2023-05-30 10:55:14 +01:00
|
|
|
services.terraria = {
|
|
|
|
enable = true;
|
|
|
|
maxPlayers = 10;
|
|
|
|
messageOfTheDay = "The Problem Solvers strike again!";
|
|
|
|
port = 7777;
|
|
|
|
openFirewall = true;
|
2023-05-30 11:58:48 +01:00
|
|
|
password = "platypus3-chance";
|
2023-05-30 11:24:22 +01:00
|
|
|
worldPath = /var/lib/terraria/Windy_Limbo_of_Melancholy.wld;
|
2023-05-30 10:55:14 +01:00
|
|
|
};
|
|
|
|
}
|