Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-17 Thread Tobias Geerinckx-Rice
Tobias Geerinckx-Rice wrote: Your config wasn't broken ^ syntax

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-17 Thread Tobias Geerinckx-Rice
Znavko, I'm glad you found a working solution in my sleep! I wish I could do that. znavko wrote: I've got names of kernel modules, so that not only pcspkr, but also snd_pcsp needs to disable Yep, I've always disabled them in tandem rather than figure out the exact difference. that sim

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-17 Thread swedebugia
zna...@tutanota.com skrev: (17 mars 2019 08:31:30 CET) >Successfully solved with this code in /etc/config.scm: > >(operating-system >... >  (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp")) >) > ># guix system reconfigure /etc/config.scm ># reboot > >PC speaker no longer beeps. Thank you!

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-17 Thread znavko
Successfully solved with this code in /etc/config.scm: (operating-system ...   (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp")) ) # guix system reconfigure /etc/config.scm # reboot PC speaker no longer beeps. Thank you! I think it's a luck, cause from here https://github.com/alezost/g

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-16 Thread znavko
You know, Tobias! Just for experiment I've add (al utils) and guix cuss out: (use-modules (gnu) (gnu system nss) (gnu system locale) ;;for locale-definition (gnu services desktop) ;;(gnu services dns) ;;for dnsmasq (srfi srfi-1) ;;for remove func

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-16 Thread znavko
Thank you! But I've found another config without this complexity. Using ddg.gg: guix config pcspkr I've found  https://gitlab.com/pkill-9/guix-config/blob/master/system-config.scm#L123 (operating-system ...   (kernel-arguments '("modprobe.blacklist=pcspkr")) ) And compiled. Guix has built qemu

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-16 Thread Tobias Geerinckx-Rice
Zvavko, znavko wrote: # guix system reconfigure /etc/config.scm /etc/config.scm:97:26: error: comma-separated: unbound variable hint: Did you forget a `use-modules' form? […] Mentioned github page has no any use-modules string that can help. Look again. From system-config/os-main.scm:

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-16 Thread znavko
I've found this example: https://github.com/alezost/guix-config/blob/master/system-config/os-main.scm and have typed this for disable pc speaker: (define %redundant-linux-modules '("pcspkr" "snd_pcsp")) (operating

Re: Disable ugly pc-speaker sound in Slim auth failure

2019-03-16 Thread znavko
Hi! According to Guix Manual 6.2.11 Initial RAM Disk and Guile Manual 6.6.9.6 List Modification I added this to config.scm: (use modules ... (gnu system linux-initrd) (gnu packages linux)) (operating-system ...   (initrd   (base-initrd file-systems