Re: Cuirass: Could not find repository

2024-05-12 Thread Roman Scherer
Richard Sent writes: Hi Richard, thanks for taking a look and uncovering the issue about deleting sddm-service-type on non-aarch64 systems. I'm now deleting it in a way that does not fail. https://github.com/asahi-guix/channel/blob/main/src/asahi/guix/system/desktop.scm#L102-L104 Unfortunatly,

dereferencing C pointer at scheme level

2024-05-12 Thread Andy Tai
Hi, a question on access to C pointer in scheme: if a C function returning a pointer is wrapped and accessed from scheme code, int64_t * func() { int64_t *p = make_new_pointer(); *p = // something return p; } in scheme (GNU guile) (set! p (func)) it is possible to see that p is now a

Re: Demystifying SSH configuration for remote software forges on Guix System

2024-05-12 Thread jbranso
May 10, 2024 at 3:57 AM, "Ashvith Shetty" wrote: > > I would like to understand the process for configuring SSH for software > forges, like Forgejo, GitLab or GitHub. So far, what I've noticed is that by > itself, SSH does not work properly, and that after opening a new terminal > session (

Re: dereferencing C pointer at scheme level

2024-05-12 Thread Andy Tai
Please ignore the message. Sent to the wrong list On Sun, May 12, 2024 at 11:51 AM Andy Tai wrote: > Hi, a question on access to C pointer in scheme: