Trying out Guix for the first time! Waiting for packages to download.
I’m a long time Arch user. Any tips?!
I’ve heard there aren’t as many packages for Guix as other distros, but I was thinking Flatpak and distrobox will help bridge the gap for me.
I quit on day two with two takeaways:
– Hardware must be well supported in fully-libre-land - I was trying to install on a Mac Mini and had to go nonguix pretty much right away. That kind of spoiled the whole effort.
– Profound meditation and enlightenment on the essence of Scheme is a must. I had one of those ‘no, this is where you don’t want a closing brace’ moments and my zen was blown out of the water.
I would have soldiered on, but personally I like Arch first and foremost because I can (and do) have a local repo by rsyncing a rotation of mirrors couple of times a week. Just in case the Internet dies one day, you know. I realised Guix was not really suitable for the apocalypse use case, so after that brace episode I decided to stick with what my spine already knows.
After all that is said – I really hope you fare better :D
Hardware must be well supported in fully-libre-land … had to go nonguix pretty much right away.
Yep, same here. I started with
nonguix
. I didn’t realize it was easy to add additional channels.Profound meditation and enlightenment on the essence of Scheme is a must. I had one of those ‘no, this is where you don’t want a closing brace’ moments and my zen was blown out of the water.
Aaaah. I juuuust had this happen to me. Took me a bit to balance the parens again! 😂 Although, so far Scheme seems nicer than Nixlang. I’ve also had curiosity to learn a functional language, so Guix gives me a reason to learn about functional programming.
Expect a steep learning curve even if you know Linux inside out. Don’t assume things work the way they did on Arch (or most other distros). If your hardware doesn’t work well, or you otherwise need some proprietary stuff, check out https://gitlab.com/nonguix/nonguix. Good luck!
Yep. Totally using
nonguix
. I’m trying out Guix for the reproducibility and system management, not (just) for the FOSS software.From my initial research, I thought that Guix was only going to allow 100% FOSS software. But I’ve learned that’s not the case. It’s actually pretty easy to add additional channels in order to install non-FOSS software. The third-party channels integrate nicely!
I added
nonguix
and also a channel for Tailscale!(list (channel (name 'nonguix) (url "https://gitlab.com/nonguix/nonguix") (branch "master") (introduction (make-channel-introduction "897c1a470da759236cc11798f4e0a5f7d4d59fbc" (openpgp-fingerprint "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) (channel (name 'tailscale) (url "https://github.com/umanwizard/guix-tailscale") (branch "main") (introduction (make-channel-introduction "c72e15e84c4a9d199303aa40a81a95939db0cfee" (openpgp-fingerprint "9E53FC33B8328C745E7B31F70226C10D7877B741")))) (channel (name 'guix) (url "https://git.savannah.gnu.org/git/guix.git") (branch "master") (introduction (make-channel-introduction "9edb3f66fd807b096b48283debdcddccfea34bad" (openpgp-fingerprint "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
I use nix for any packages I can’t get from guix repos. So that’s an option too.
Could you share how you do that? It didn’t work last time I tried it (using Nix on top of Guix).
FYI Hetzner VPS have a 1 click install for guix if you just want to try it out.
Neat. Although, I wanted to go through the installation
painexperience. Eventually, I’m hoping to run Guix on a server. I’m starting with my laptop first.
I’ve not used Guix but I don’t think any distro has anything close to number of desirable available packages as arch— so be prepared for that. My ventures into debian, suse and fedora were made quite annoying by having to work around the many missing packages. Including user-facing applications, dependencies and background programs. I never quite got down with distrobox, maybe that’s the cure.
this chart on wikipedia gives the impression that Debian has more packages but that’s not the way it feels when you are looking for something. Maybe they have a lot of dot matrix printer libraries from 1992 or something which bring the number up.
Arch includes a lot of not-at-all-free packages (which it is impossible to distinguish in pacman or other tool as far as I can find), orphaned, new packages that haven’t yet made it into other repos, and packages where no attempt has been made to submit them to other repos.
On arch I have virtually never had to go outside the repos for packages. It’s very hard to give up once you are used to it. (Even though it’s better to use properly libre/free stuff and other benefits of a more curated approach like security, stability and quality.)
I’ve not used Guix but I don’t think any distro has anything close to number of desirable available packages as arch— so be prepared for that
nixpkgs would like a word
The thing about Guix (and Nix) is that there doesnt need to be a package in the repos. You can either make your system automatically compile from source (which is how many AUR packages work) or use something like distrobox, bottles, flatpak to run extra software
use something like distrobox, bottles, flatpak to run extra software
YES! That’s my plan! I think I just figured out how to configure
flakpak
a little better.These are only part of the steps needed: https://flatpak.org/setup/GNU Guix
You also need to source
~/.guix-profile/etc/profile.d/flatpak.sh
in order to get the desktop icons to show up in the GNOME app launcher. (Usingguix home
for that!)Need to work on getting distrobox setup next. I was able to
guix install distrobox
, but it requires some extra configuration apparently.