hurd-vm-service-type into /etc/config.scm

2024-03-16 Thread hubert.lomb...@ik.me
Hello guix! My goal is to insert the hurd-vm-service-type service into my "/etc/config.scm" I tried inserting it into %desktop-services Then I thought it would be a good idea to add the virtualization module after the (use-service-modules, at the top. Into %base-user-accounts)) I added "kvm" in

Re: USB Ethernet dongle stops working after reconnect

2024-03-16 Thread Ivan Popovych
Ivan Popovych writes: > Hi, I have an unused laptop that I want to try experimenting with > Guix on. Since builtin network controller uses nonfree firmware to connect > to it to network I got some USB Ethernet dongle which uses RTL8153 chip > and it works when I boot system but if I try to reconn

USB Ethernet dongle stops working after reconnect

2024-03-16 Thread Ivan Popovych
Hi, I have an unused laptop that I want to try experimenting with Guix on. Since builtin network controller uses nonfree firmware to connect to it to network I got some USB Ethernet dongle which uses RTL8153 chip and it works when I boot system but if I try to reconnect it or let it idle for a bit

Multiple versions of mesa libraries in cmake runtime search path

2024-03-16 Thread Jake
Hello In short, I have the mesa package installed and another package I installed appears to have a different mesa in /gnu/store/ as a runtime dependency. As a result, cmake is unable to generate a safe runtime search path, because there are 2 different libGL.so.1 and libEGL.so.1 files in the path

I installed guix with a swap and ... my swap disappeared

2024-03-16 Thread jean-michel . colin--- via
Hello everybody, my first post here, I come from NixOS but as a lisper it's much more consistent for me to use Guix. So I installed guix on an encrypted ext4 device, from the graphic installer, including a swap. The first time, everything worked, including the swap. Until I suspended (

Re: I installed guix with a swap and ... my swap disappeared

2024-03-16 Thread Tobias Geerinckx-Rice
Hi Jean-Michel, Try running # sudo mkswap /dev/sda3 to recreate the swap area. In fact, run it now before continuing. See the last paragraph. I think that both of your problems have the same cause, and one that's easily fixed. To resume from hibernation, Linux needs to be told where the hi

Re: hurd-vm-service-type into /etc/config.scm

2024-03-16 Thread Richard Sent
Hubert, Your issue is in your operating-system services field. In the backtrace: --8<---cut here---start->8--- In procedure append: Wrong type argument in position 2 (expecting empty list) #< type: #8--- You have several services outside of the (list) call, so

Re: Help with channel build system and package

2024-03-16 Thread Jesse Millwood
Richard and Marek, The input from both of you helped me get a little farther. I've pushed my changes to https://codeberg.org/moonling/guix-embedded-dev. I feel like I'm really close now. I seem to be able to get into the phases of my build system. I can not invoke the crosstool-ng tool. My i

Re: Help with channel build system and package

2024-03-16 Thread Jesse Millwood
I actually think I figured it out! I ended up adding a build phase that copies the plain-file defined as the source in the package object to the build directory. I'm finally at a point where I'm just having build failures of the package itself, which I'm a little more familiar debugging. Tha