nixos/system/services/terraria/windy_limbo_of_melancholy.nix

13 lines
337 B
Nix
Raw Normal View History

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