mini_nixcfg/imports/murmur.nix
2025-05-25 15:39:04 -04:00

11 lines
162 B
Nix

{ config, lib, pkgs, ... }:
{
services.murmur= {
enable = true;
password = "Mine";
port = 64738;
welcometext = "WELCOME TO MINECRATF";
};
}