aboutsummaryrefslogtreecommitdiff
path: root/src/org/euandre/packages.scm
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-08-29 14:39:14 -0300
committerEuAndreh <eu@euandre.org>2024-08-29 14:39:14 -0300
commit0189a76661812e587ceb64bc5c22918211c8ace4 (patch)
treec7eba119543e60806e49b6ac08335b4350a92041 /src/org/euandre/packages.scm
parentpackages.scm: Fix missing escaping (diff)
downloadpackages-0189a76661812e587ceb64bc5c22918211c8ace4.tar.gz
packages-0189a76661812e587ceb64bc5c22918211c8ace4.tar.xz
packages.scm: Fix /var/mail symlink
Diffstat (limited to 'src/org/euandre/packages.scm')
-rw-r--r--src/org/euandre/packages.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/euandre/packages.scm b/src/org/euandre/packages.scm
index ccc1177..6aada3c 100644
--- a/src/org/euandre/packages.scm
+++ b/src/org/euandre/packages.scm
@@ -591,9 +591,9 @@
(when (file-exists? to)
(delete-file to))
(symlink from to))
- (link "mnt/production/opt" "/opt")
- (link "mnt/production/srv" "/srv")
- (link "../mnt/production/srv" "/var/mail")
+ (link "mnt/production/opt" "/opt")
+ (link "mnt/production/srv" "/srv")
+ (link "../mnt/production/mail" "/var/mail")
(dir "/root/.ssh")
(link #$privkey-path "/root/.ssh/id_rsa")
(link "../../etc/ssh.conf" "/root/.ssh/config")