summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Montero <fabian@posixlycorrect.com>2025-08-26 15:02:26 -0600
committerFabian Montero <fabian@posixlycorrect.com>2025-08-26 15:02:26 -0600
commitbf85cd5841a9f5774d981dfa86a70e77bba833c6 (patch)
tree5072d843f439284eb7373598742feb2b8f0cd15e
parent0cca536ce9a59508da0e1cac7468f4365807409e (diff)
trivionomicon: add motd module
Diffstat (limited to '')
-rw-r--r--modules/trivionomiconMotd/default.nix10
-rw-r--r--modules/trivionomiconMotd/sys.nix22
2 files changed, 32 insertions, 0 deletions
diff --git a/modules/trivionomiconMotd/default.nix b/modules/trivionomiconMotd/default.nix
new file mode 100644
index 0000000..0844b5a
--- /dev/null
+++ b/modules/trivionomiconMotd/default.nix
@@ -0,0 +1,10 @@
+{
+ config,
+ doctrine,
+ ...
+}:
+doctrine.lib.mkModule {
+ inherit config;
+ name = "trivionomiconMotd";
+ sys = ./sys.nix;
+}
diff --git a/modules/trivionomiconMotd/sys.nix b/modules/trivionomiconMotd/sys.nix
new file mode 100644
index 0000000..5b38e3d
--- /dev/null
+++ b/modules/trivionomiconMotd/sys.nix
@@ -0,0 +1,22 @@
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}: {
+ users.motd = ''
+ _ _ _ _
+ | | | | | | | |
+ _ __ _____ _____ _ __ ___ __| | | |__ _ _ | |_| |__ ___
+ | '_ \ / _ \ \ /\ / / _ \ '__/ _ \/ _` | | '_ \| | | | | __| '_ \ / _ \
+ | |_) | (_) \ V V / __/ | | __/ (_| | | |_) | |_| | | |_| | | | __/
+ | .__/ \___/ \_/\_/ \___|_| \___|\__,_| |_.__/ \__, | \__|_| |_|\___|
+ | | __/ |
+ |_|_____ _____ _______ _______ ____ _ _|___/_ __ __ _____ _____ ____ _ _
+ |__ __| __ \|_ _\ \ / /_ _/ __ \| \ | |/ __ \| \/ |_ _/ ____/ __ \| \ | |
+ | | | |__) | | | \ \ / / | || | | | \| | | | | \ / | | || | | | | | \| |
+ | | | _ / | | \ \/ / | || | | | . ` | | | | |\/| | | || | | | | | . ` |
+ | | | | \ \ _| |_ \ / _| || |__| | |\ | |__| | | | |_| || |___| |__| | |\ |
+ |_| |_| \_\_____| \/ |_____\____/|_| \_|\____/|_| |_|_____\_____\____/|_| \_|
+ '';
+}