diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-12-04 00:37:11 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-12-04 00:37:11 -0500 |
commit | 08dc9f2ca2e96476aa51c906c8ba01ca5d033568 (patch) | |
tree | efe482c8e61f088e5d4ae2bc2c84789f3ff7e4a6 /gnu/system/examples/raspberry-pi-64.tmpl | |
parent | bf46192d4c7c4cd8d71edb8ace2cdf86322aafe7 (diff) | |
download | guix-08dc9f2ca2e96476aa51c906c8ba01ca5d033568.tar.gz |
gnu: Do not use 'local-file' in Raspberry Pi OS examples.
As this breaks the 'tests/guix-system.sh' test. * gnu/system/examples/raspberry-pi-64-nfs-root.tmpl (%my-public-key): Delete variable. (raspberry-pi-64-nfs-root) [services]: Remove key from openssh-configuration. * gnu/system/examples/raspberry-pi-64.tmpl: Likewise. Reported-by: Vagrant Cascadian <vagrant@debian.org>
Diffstat (limited to 'gnu/system/examples/raspberry-pi-64.tmpl')
-rw-r--r-- | gnu/system/examples/raspberry-pi-64.tmpl | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gnu/system/examples/raspberry-pi-64.tmpl b/gnu/system/examples/raspberry-pi-64.tmpl index 7d2638dd80..3ad588207c 100644 --- a/gnu/system/examples/raspberry-pi-64.tmpl +++ b/gnu/system/examples/raspberry-pi-64.tmpl @@ -20,9 +20,6 @@ raspberry-pi ssh) -(define %my-public-key - (local-file (string-append (getenv "HOME") "/.ssh/id_ecdsa.pub"))) - (define-public raspberry-pi-64 (operating-system (host-name "raspberrypi-guix") @@ -70,9 +67,7 @@ (service ntp-service-type) (service openssh-service-type (openssh-configuration - (x11-forwarding? #t) - (authorized-keys - `(("pi" ,%my-public-key))))) + (x11-forwarding? #t))) %base-services)) (name-service-switch %mdns-host-lookup-nss))) |