aboutsummaryrefslogtreecommitdiff
path: root/src/infrastructure
diff options
context:
space:
mode:
Diffstat (limited to 'src/infrastructure')
-rw-r--r--src/infrastructure/guix/system.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm
index f898033..0cc8377 100644
--- a/src/infrastructure/guix/system.scm
+++ b/src/infrastructure/guix/system.scm
@@ -100,8 +100,7 @@
(define authorized-keys
(let ((users-with-keys
(map (lambda (user)
- (append user
- (list (slurp (ssh-file-for user)))))
+ `(,@user ,(slurp (ssh-file-for user))))
(filter (lambda (user)
(file-exists? (ssh-file-for user)))
users))))