From 326e03fdc13eefd77a9dc38445dd052bb6e65b7b Mon Sep 17 00:00:00 2001 From: spacefault <74156492+spacefault@users.noreply.github.com> Date: Sun, 7 Jan 2024 01:46:17 -0700 Subject: [PATCH] system/users: add motd Signed-off-by: spacefault <74156492+spacefault@users.noreply.github.com> --- system/users.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/users.nix b/system/users.nix index 5fc7fb7..f2c0281 100644 --- a/system/users.nix +++ b/system/users.nix @@ -10,4 +10,7 @@ packages = with pkgs; []; shell = pkgs.zsh; }; + users = { + motd = "welcome to the grade server shell prompt!\n===================\n\nthe minecraft server has already started, so theres nothing you need to do here :)\n\nfor more information and help, including stuff about switching tracks, please\nread the docs at:\n\nhttps://github.com/gradetools/minecraft-nix/wiki\n\nthanks for reading!"; + }; }