mini_nixcfg/imports/murmur.nix

12 lines
162 B
Nix
Raw Normal View History

2025-05-25 15:39:04 -04:00
{ config, lib, pkgs, ... }:
{
services.murmur= {
enable = true;
password = "Mine";
port = 64738;
welcometext = "WELCOME TO MINECRATF";
};
}