diff options
author | Ting-Wei Lan <lantw44@gmail.com> | 2023-04-29 21:09:58 +0800 |
---|---|---|
committer | Ting-Wei Lan <lantw44@gmail.com> | 2023-04-29 21:09:58 +0800 |
commit | 34bfc0fd452354ec6920ed321730e9bac7a9fba2 (patch) | |
tree | 0b2c834c2d9f43f42b5931320dec6a83dc1d7ef1 /guix | |
parent | 5a58bba9322688ae471a683b5cc4031598fd2bdf (diff) | |
download | copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar.gz copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar.bz2 copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar.lz copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar.xz copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.tar.zst copr-rpm-spec-34bfc0fd452354ec6920ed321730e9bac7a9fba2.zip |
guix: Update instructions for importing public keys
Diffstat (limited to 'guix')
-rw-r--r-- | guix/INSTALL.md | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/guix/INSTALL.md b/guix/INSTALL.md index d52591c..d8f3b2d 100644 --- a/guix/INSTALL.md +++ b/guix/INSTALL.md @@ -7,7 +7,6 @@ Start the `guix-daemon` by using systemd or manually running command `guix-daemon --build-users-group=guixbuild` as root. `guix-daemon` will create most necessary files and directories when you first using it. -If you want to use prebuilt packages provided by -[GNU Hydra](https://hydra.gnu.org), you should run -`guix archive --authorize --import < /usr/share/guix/hydra.gnu.org.pub` +If you want to use prebuilt packages, you should run +`for i in /usr/share/guix/*.pub; do guix archive --authorize < "$i"; done` as root before using `guix package`. |