diff options
author | EuAndreh <eu@euandre.org> | 2024-08-29 14:39:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-08-29 14:39:14 -0300 |
commit | 0189a76661812e587ceb64bc5c22918211c8ace4 (patch) | |
tree | c7eba119543e60806e49b6ac08335b4350a92041 | |
parent | packages.scm: Fix missing escaping (diff) | |
download | packages-0189a76661812e587ceb64bc5c22918211c8ace4.tar.gz packages-0189a76661812e587ceb64bc5c22918211c8ace4.tar.xz |
packages.scm: Fix /var/mail symlink
-rw-r--r-- | src/org/euandre/packages.scm | 6 |
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") |