Re: Running a Guix User and Contributor survey

2024-11-04 Thread Denis 'GNUtoo' Carikli
Hi, On Wed, 30 Oct 2024 12:03:26 + Steve George wrote: Here's some feedback on the proposal below. > # Audience > The audience for this survey are all Guix users and contributors > [^1]. This means: > > - Guix user: anyone who uses all or part of Guix, whether as their > operating system

Re: Running a Guix User and Contributor survey

2024-11-04 Thread Denis 'GNUtoo' Carikli
On Thu, 31 Oct 2024 16:44:22 +0100 Ekaitz Zarraga wrote: > I think we could do with Framasoft: > https://framasoft.frama.io/framaforms/en/ The downside of framaforms is that they block Tor. Denis. pgpkATUAGHcJY.pgp Description: OpenPGP digital signature

Re: Some code in guix-package* is somehow reached multiple times without any clear reason?

2024-11-04 Thread Ludovic Courtès
Hi Evan, Evan Cooney skribis: > I was profiling each expression in guix-package* trying to find which > expression takes the most time to evaluate when I noticed the profiling > command displaying data multiple times despite wrapping an expression that > looks like it's only evaluated one time.

Re: Announcing shepherd-run

2024-11-04 Thread Ludovic Courtès
Hello, Efraim Flashner skribis: > On Sun, Nov 03, 2024 at 04:57:09PM +0100, Denis 'GNUtoo' Carikli wrote: >> Hi, >> >> On Sun, 3 Nov 2024 15:19:04 +0200 >> Efraim Flashner wrote: >> >> > Announcing the initial release of shepherd-run! >> > >> > Do you have experience with systemd and systemd

Re: Possible useful guix package performance data

2024-11-04 Thread Ludovic Courtès
Hi, "Thompson, David" skribis: > What are you trying to measure, exactly? The data collected is about a > single thread of a Guile process, but `guix package -i` involves > interaction with the Guix build daemon, waiting for downloads, etc. > These things are outside the scope of what statprof i

Re: guix system init config.scm mnt failed with kernel module not found

2024-11-04 Thread Ludovic Courtès
Hi Alex, Tobias Alexandra Platen skribis: > After a long time, I tried running "guix system init config.scm mnt" on > my Talos II which failed, as I expected: > > gnu/build/linux-modules.scm:278:5: kernel module not found "uas" > "/gnu/store/gi6layj85kmkwk0s6x415zwsmzczh2vv-linux-libre- > 6.11.

Re: Upgrading Guix packages website in Guix infrastructure

2024-11-04 Thread Ludovic Courtès
Hello, Luis Felipe skribis: > Hi guix, > > The software behind https://packages.guix.gnu.org/, Guix Packages > Website,¹ has been updated with the following changes: Yay! Could you send a patch against this: https://git.savannah.gnu.org/cgit/guix/maintenance.git/tree/hydra/modules/sysadmin

Re: Running a Guix User and Contributor survey

2024-11-04 Thread Ludovic Courtès
Hello! Steve George skribis: > The rationale for a survey is that it's a way to build up an understanding of > our users and contributors which can inform our thoughts and decisions. As a > project that's focused on user-freedom we don't use telemetry or have the > resources to run profession

Re: Unofficial channel 'whispers' with services and packages

2024-11-04 Thread Ludovic Courtès
Hello Runciter, Lots of interesting things in there! If I could have a wish list of things to integrate in Guix proper, it would be this: > * dictd: the original programs for the DICT protocol. Includes the dict > client and dictd server, which dico and dicod know how to > emulate. Also incl

Re: Replace Icedove for Thunderbird

2024-11-04 Thread Development of GNU Guix and the GNU System distribution.
Hi Sergio, On Sun, Nov 03 2024, Sergio Pastor Pérez wrote: > The Debian wiki says that the trademark issues with Thunderbird have > been resolved: As far as I know, the Mozilla Foundation simply accepted the Debian builds as official. I am not sure the same is true for GNU Guix. Please conside

Re: Replace Icedove for Thunderbird

2024-11-04 Thread Development of GNU Guix and the GNU System distribution.
Hi Sergio, On Sun, Nov 03 2024, Sergio Pastor Pérez wrote: > The Debian wiki says that the trademark issues with Thunderbird have > been resolved: As far as I know, the Mozilla Foundation simply accepted the Debian builds as official. I am not sure the same is true for GNU Guix. Please conside

Re: bug#73462: emacs-guix: shell commands broken

2024-11-04 Thread Christopher Howard
With some exploration, I figured out I can make the popup work again by doing the following from inside *Guix Internal REPL*: ``` scheme@(emacs-guix)> ,m (guix gexp) scheme@(guix gexp)> (read-hash-extend #\~ read-gexp) (read-hash-extend #\$ read-ungexp) (read-hash-extend #\+ (cut read-ungex

Re: Understanding how guix selects a bootloader variant

2024-11-04 Thread Development of GNU Guix and the GNU System distribution.
Hi Tobias Alexandra, On Sun, Nov 03 2024, Tobias Alexandra Platen wrote: > where guix selects BIOS/UEFI for a VM when using grub-bootloader. I believe it happens here [1] but via "bootloader-configuration". I personally find Guix's bootloader code convoluted. Kind regards Felix P.S. I referre

Re: Understanding how guix selects a bootloader variant

2024-11-04 Thread Tobias Alexandra Platen
Thats the one I was looking for On Sun, 2024-11-03 at 20:23 +0200, Efraim Flashner wrote: > powerpc-*) platform=ieee1275 ;; >     powerpc64-*) platform=ieee1275 ;; >     powerpc64le-*) platform=ieee1275 ;;

Re: bug#73462: emacs-guix: shell commands broken

2024-11-04 Thread Christopher Howard
I've been trying to look into this more, though my knowledge of guile and the guix scheme code is, frankly, quite limited. However, it seems like what is happening is that the guile/guix REPL chokes as soon as it come across its first gexp in guix/scripts/deploy.scm, line 176 >#~(begin Now