-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrapping channels #7
Comments
Thanks! Yeah, I wasn't intending for Guix to pick it up from that location, it was just a convenient place to stash the pinned channel file so that it could be used with I wonder if I can avoid the |
I wouldn't run guix pull until after the `herd start cow-store /mnt` step. But yes running guix pull will get everything from the correct channel but If it is too out of date then the pull will fail due to changing dependencies in the underlying guix system.
It's been a while since I set guix up from scratch without another machine on the network to serve substitutes though so your way may be better for fresh installs
…On Jul 6, 2021, 04:51 -0600, David Wilson ***@***.***>, wrote:
Thanks! Yeah, I wasn't intending for Guix to pick it up from that location, it was just a convenient place to stash the pinned channel file so that it could be used with guix time-machine for the initial installation process and ensure that newer package derivations aren't used (to avoid rebuilding the non-free Linux kernel).
I wonder if I can avoid the guix time-machine step I provided in the installation video if I put the channel file in the right place? I suppose you'd still need to run guix pull first.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Right now
channels.scm
is getting added to/etc/channels.scm
which is the wrong location for channels to be recognized IIRC. the correct path is/etc/guix/channels.scm
and these can be added like soDoing it this way eliminates the need for a few lines of bash script or managing a separate channels file. More importantly it adds system-wide guix channels to the correct directory.
The text was updated successfully, but these errors were encountered: