summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-12-09 09:23:43 -0500
committerFreya Murphy <freya@freyacat.org>2024-12-09 09:23:43 -0500
commitb2f7c3c3b413d83966121978ea0d177068cfb82f (patch)
treefe16d0c2996cc6d548433d214ba6f8e27a2b5b47 /modules
parentfix cuirass system specification (diff)
downloaddotfiles-guix-b2f7c3c3b413d83966121978ea0d177068cfb82f.tar.gz
dotfiles-guix-b2f7c3c3b413d83966121978ea0d177068cfb82f.tar.bz2
dotfiles-guix-b2f7c3c3b413d83966121978ea0d177068cfb82f.zip
refactor keys/certs into new `files` folder
Diffstat (limited to '')
-rw-r--r--modules/freya/certs.scm2
-rw-r--r--modules/freya/system.scm8
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/freya/certs.scm b/modules/freya/certs.scm
index 9ba1fa2..71fa1bd 100644
--- a/modules/freya/certs.scm
+++ b/modules/freya/certs.scm
@@ -13,7 +13,7 @@
(package
(name "freya-ca-certs")
(version "1")
- (source (local-file "../../certs"
+ (source (local-file "../../files/certs"
#:recursive? #t))
(build-system trivial-build-system)
(license license:mpl2.0)
diff --git a/modules/freya/system.scm b/modules/freya/system.scm
index 03f67b4..002a910 100644
--- a/modules/freya/system.scm
+++ b/modules/freya/system.scm
@@ -220,8 +220,8 @@
(service openssh-service-type
(openssh-configuration
(authorized-keys
- `(("freya" ,(local-file "../../keys/freya-ssh.pub"))
- ("root" ,(local-file "../../keys/freya-ssh.pub"))))
+ `(("freya" ,(local-file "../../files/keys/freya-ssh.pub"))
+ ("root" ,(local-file "../../files/keys/freya-ssh.pub"))))
(permit-root-login #t)
(allow-empty-passwords? #t)
(password-authentication? #f)
@@ -238,8 +238,8 @@
"https://substitutes.freya.cat")
%default-substitute-urls))
(authorized-keys
- (append (list (local-file "../../keys/nonguix.pub")
- (local-file "../../keys/sakura.pub"))
+ (append (list (local-file "../../files/keys/nonguix.pub")
+ (local-file "../../files/keys/sakura.pub"))
%default-authorized-guix-keys)))))))
(define-public %desktop-freya-services