11 lines
162 B
Nix
11 lines
162 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
services.murmur= {
|
|
enable = true;
|
|
password = "Mine";
|
|
port = 64738;
|
|
welcometext = "WELCOME TO MINECRATF";
|
|
};
|
|
|
|
}
|