Hide boot process logs

2020-08-18 Thread Reza Alizadeh Majd
Hi, I want to hide the boot process logs in Guix, having a quick search I found that I can use following options in grub configuration file: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" the problem is that based on current bootloader definition, there is no option exposed for additional grub co

Re: Customizing Haunt to work with Skribilio

2020-08-18 Thread Joshua Branson
pukkamustard writes: > Hi Joshua, > > You need to add the `skribe-reader` to the list of readers in your > site configuration: > > ``` > #:readers (list commonmark-reader skribe-reader) > ``` Thanks that fixed it! > > Hope that helps, > -pukkamustard > > PS: Would you be interested in porting S

Re: Hide boot process logs

2020-08-18 Thread Tobias Geerinckx-Rice
Hi Reza! Reza Alizadeh Majd 写道: I want to hide the boot process logs in Guix, having a quick search I found that I can use following options in grub configuration file: GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" Forget this line. No part of it makes sense on Guix (except ‘quiet’, which is

Re: Hide boot process logs

2020-08-18 Thread John Soo
Hey Reza and Guix, I should add that even if it is not supported now, hacking on the grub configuration is not too difficult and is located in gnu/bootloader/grub.scm. You should be able to specify parameters there. Hope that helps, John

Re: Hide boot process logs

2020-08-18 Thread Reza Alizadeh Majd
Hi Tobias! Thanks for your response. On Tue, 18 Aug 2020 18:04:05 +0200 Tobias Geerinckx-Rice wrote: > Hi Reza! > > Reza Alizadeh Majd 写道: > > I want to hide the boot process logs in Guix, having a quick > > search I > > found that I can use following options in grub configuration > > file:

Re: Hide boot process logs

2020-08-18 Thread Reza Alizadeh Majd
Hi John, On Tue, 18 Aug 2020 09:54:00 -0700 John Soo wrote: > Hey Reza and Guix, > > I should add that even if it is not supported now, hacking on the > grub configuration is not too difficult and is located in > gnu/bootloader/grub.scm. You should be able to specify parameters > there. Thanks