Re: Inkscape 1.0 segfault when trying to bring up file chooser

2020-06-14 Thread Maxim Cournoyer
Hello Thorsten, Thorsten Wilms writes: > Hi! > > Guix last updated yesterday, on top of Ubuntu. Triggering ‘Save as’ in > Inkscape leads to: > ``` > (org.inkscape.Inkscape:5125): GLib-GIO-ERROR **: > 11:56:37.434: Settings schema 'org.gtk.Settings.FileChooser' does not > contain a key named

Re: Guix completion in Emacs

2020-06-14 Thread Fredrik Salomonsson
Hi, Ricardo Wurmus writes: > This works for me. > > $ guix describe > Generation 47 6月 05 2020 23:22:46 (current) > guix ecab53c > repository URL: https://git.savannah.gnu.org/git/guix.git > branch: master > commit: ecab53c320b1584a08f811b17a92bd9a50a50ff3 > > $ readlink -f

Re: Guix completion in Emacs

2020-06-14 Thread Ricardo Wurmus
Hi Kyle, > I am unable to conditional tab completion of Guix commands when in > shell-mode or eshell-mode in Emacs. In other words, I can tab-complete > the major modules e.g. ~guix package~, but cannot tab complete > ~--arguments~ to them. When I try I see an error: > > guix-geiser-eval:

Guix completion in Emacs

2020-06-14 Thread Kyle Andrews
Hello Everyone, I am unable to conditional tab completion of Guix commands when in shell-mode or eshell-mode in Emacs. In other words, I can tab-complete the major modules e.g. ~guix package~, but cannot tab complete ~--arguments~ to them. When I try I see an error: guix-geiser-eval: Error

Re: How configure my desktop to use a static ip address?

2020-06-14 Thread Kyle Andrews
Thanks to generous help from several people in the #guix IRC channel, I learned that the trick I was missing was that I could actually use Network Manager to setup a static IP once the router has been configured to reserve it. This generates a ~*.nmconnection~ configuration file into: :

Re: error setting console font in system.scm

2020-06-14 Thread John Soo
Hi Fulbert, Fulbert writes: > For this to work though, I just had to correct a typo : add a `comma` > (to _unquote_, if I'm not wrong) before the `(file-append …`. > So, for reference : > > ;; At the top of the file > (use-modules > ... > (ice-9 match)) > > ;; Replace

Re: error setting console font in system.scm

2020-06-14 Thread Fulbert
On Sat, Jun 13, 2020 at 09:18:18PM -0700, John Soo wrote: > Hello Fullbert, > > Fulbert writes: > > > Trying to change console font with the following in "services" section > > of my system configuration file : > > > > > > … > > (services (append (list > > … > >

Re: BPF in linux-libre

2020-06-14 Thread John Soo
Hi Mathieu, Mathieu Othacehe writes: > Now, it's just a matter of packaging "bcc" and "bpftrace" I guess. I was working on these yesterday. I keep getting errors that seem to indicate the linux-libre-headers we have might not be compatible: Here's my definition: (define-public bcc (let*

Inkscape 1.0 segfault when trying to bring up file chooser

2020-06-14 Thread Thorsten Wilms
Hi! Guix last updated yesterday, on top of Ubuntu. Triggering ‘Save as’ in Inkscape leads to: ``` (org.inkscape.Inkscape:5125): GLib-GIO-ERROR **: 11:56:37.434: Settings schema 'org.gtk.Settings.FileChooser' does not contain a key named 'show-type-column' Trace/breakpoint trap (core dumped) ``` I

Re: BPF in linux-libre

2020-06-14 Thread Mathieu Othacehe
Hello John, > I was in the mood to try some of these new bpf tools. Does the linux libre > kernel support it? Yes it should support it, plus according to this[1], we have the right Kernel configuration (except maybe for CONFIG_BPF_JIT). Now, it's just a matter of packaging "bcc" and