Skip to content

Commit 9dabf2a

Browse files
committed
Add memorium to our founder
1 parent 50f771f commit 9dabf2a

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

guix/resources/motd.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
.--, .--,
2+
( ( \.---./ ) )
3+
'.__/o o\__.'
4+
{= ^ =}
5+
> - <
6+
________________________.""`-------`"".________________________
7+
/ \
8+
\ R.I.P. Christopher J. Lovering /
9+
/ \
10+
\ 'They popped a cap in his ass.' /
11+
/ \
12+
\ Dec 26th 1991 - March 8th 2026 /
13+
/ \
14+
\_______________________________________________________________/
15+
___)( )(___
16+
(((__) (__)))

guix/turing.scm

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
(name "turing")
4343
(mapping '((22 "127.0.0.1:22")))))))
4444

45+
(define %motd
46+
(file-from-cwd "/resources/motd.txt"))
47+
4548
(define %certbot-deploy-hook
4649
(program-file
4750
"nginx-deploy-hook"
@@ -113,7 +116,9 @@
113116
(simple-service 'resolv-conf etc-service-type
114117
(list `("resolv.conf" ,(plain-file
115118
"resolv.conf"
116-
"nameserver 1.1.1.1 1.0.0.1\n")))))
119+
"nameserver 1.1.1.1 1.0.0.1\n"))))
120+
(simple-service 'motd etc-service-type
121+
(list `("motd" ,%motd))))
117122
%base-services))
118123

119124
;; Operating system description

0 commit comments

Comments
 (0)