10 lines
175 B
Nix
10 lines
175 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.teeworlds = {
|
|
enable = true;
|
|
openPorts = true;
|
|
|
|
motd = "Welcome to ${config.mine.settings.domain}'s Teeworld server!";
|
|
};
|
|
}
|