diff options
author | Freya Murphy <freya@freyacat.org> | 2024-10-24 12:33:33 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-10-24 12:34:08 -0400 |
commit | 74dd0ce041224b21c73cd00a20367f68fec2d3e6 (patch) | |
tree | 7d0b7f027dfb532f60fed000b0695fdf377f537b /modules | |
parent | update mimeapps (diff) | |
download | dotfiles-guix-74dd0ce041224b21c73cd00a20367f68fec2d3e6.tar.gz dotfiles-guix-74dd0ce041224b21c73cd00a20367f68fec2d3e6.tar.bz2 dotfiles-guix-74dd0ce041224b21c73cd00a20367f68fec2d3e6.zip |
refactor certs folder
Diffstat (limited to 'modules')
-rw-r--r-- | modules/freya/system.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/freya/system.scm b/modules/freya/system.scm index 5873d01..395cb29 100644 --- a/modules/freya/system.scm +++ b/modules/freya/system.scm @@ -225,8 +225,8 @@ (service openssh-service-type (openssh-configuration (authorized-keys - `(("freya" ,(local-file "../../certs/gpgkey.pub")) - ("root" ,(local-file "../../certs/gpgkey.pub")))) + `(("freya" ,(local-file "../../keys/freya-ssh.pub")) + ("root" ,(local-file "../../keys/freya-ssh.pub")))) (permit-root-login #t) (allow-empty-passwords? #t) (password-authentication? #f) @@ -243,8 +243,8 @@ "https://substitutes.freya.cat") %default-substitute-urls)) (authorized-keys - (append (list (local-file "../../certs/non-guix.pub") - (local-file "../../certs/sakura.pub")) + (append (list (local-file "../../keys/nonguix.pub") + (local-file "../../keys/sakura.pub")) %default-authorized-guix-keys))))))) (define-public %desktop-freya-services |