diff options
author | EuAndreh <eu@euandre.org> | 2023-03-13 14:10:48 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-03-13 14:10:48 -0300 |
commit | 813266827378f6e53a092140274c690f45edcf26 (patch) | |
tree | fe9505174c7c049ff89026ddcfbc971a42e2340f | |
parent | src/infrastructure/keys/andreh.pub: Remove old file (diff) | |
download | toph-813266827378f6e53a092140274c690f45edcf26.tar.gz toph-813266827378f6e53a092140274c690f45edcf26.tar.xz |
system.scm: Adapt (ssh-file-for ...) function for new SSH key path
Notes
See CI logs with:
git notes --ref=refs/notes/ci-logs show 813266827378f6e53a092140274c690f45edcf26
git notes --ref=refs/notes/ci-data show 813266827378f6e53a092140274c690f45edcf26
Exit status: 0
Duration: 11
-rw-r--r-- | src/infrastructure/guix/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/infrastructure/guix/system.scm b/src/infrastructure/guix/system.scm index 6342a82..5b5de00 100644 --- a/src/infrastructure/guix/system.scm +++ b/src/infrastructure/guix/system.scm @@ -94,7 +94,7 @@ (define (ssh-file-for user) (let ((name (s1:first user))) - (path (fmt "src/infrastructure/keys/SSH/~a.pub" name)))) + (path (fmt "src/infrastructure/keys/SSH/~a.pub.txt" name)))) (define authorized-keys (let ((users-with-keys |