trivionomicon: add motd module

This commit is contained in:
Fabian Montero 2025-08-26 15:02:26 -06:00
parent 61da57ac9d
commit 040ce540c8
Signed by: fabian
GPG key ID: 1FFAC35E1798174F
3 changed files with 33 additions and 0 deletions

View file

@ -33,6 +33,7 @@
};
local.sway.enable = true;
local.trivionomiconMotd.enable = true;
networking = {
hostName = "posixlycorrect";

View file

@ -0,0 +1,10 @@
{
config,
doctrine,
...
}:
doctrine.lib.mkModule {
inherit config;
name = "trivionomiconMotd";
sys = ./sys.nix;
}

View file

@ -0,0 +1,22 @@
{
config,
lib,
pkgs,
...
}: {
users.motd = ''
_ _ _ _
| | | | | | | |
_ __ _____ _____ _ __ ___ __| | | |__ _ _ | |_| |__ ___
| '_ \ / _ \ \ /\ / / _ \ '__/ _ \/ _` | | '_ \| | | | | __| '_ \ / _ \
| |_) | (_) \ V V / __/ | | __/ (_| | | |_) | |_| | | |_| | | | __/
| .__/ \___/ \_/\_/ \___|_| \___|\__,_| |_.__/ \__, | \__|_| |_|\___|
| | __/ |
|_|_____ _____ _______ _______ ____ _ _|___/_ __ __ _____ _____ ____ _ _
|__ __| __ \|_ _\ \ / /_ _/ __ \| \ | |/ __ \| \/ |_ _/ ____/ __ \| \ | |
| | | |__) | | | \ \ / / | || | | | \| | | | | \ / | | || | | | | | \| |
| | | _ / | | \ \/ / | || | | | . ` | | | | |\/| | | || | | | | | . ` |
| | | | \ \ _| |_ \ / _| || |__| | |\ | |__| | | | |_| || |___| |__| | |\ |
|_| |_| \_\_____| \/ |_____\____/|_| \_|\____/|_| |_|_____\_____\____/|_| \_|
'';
}