From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Geerinckx-Rice Subject: Re: Disable ugly pc-speaker sound in Slim auth failure Date: Sat, 16 Mar 2019 17:00:46 +0100 Message-ID: <87zhpuajwx.fsf@nckx> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:33868) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h5BmS-00062x-In for help-guix@gnu.org; Sat, 16 Mar 2019 12:03:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h5Bju-0007Oh-9Y for help-guix@gnu.org; Sat, 16 Mar 2019 12:00:50 -0400 Received: from tobias.gr ([2001:470:7405::1]:47710) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h5Bjt-0007NB-Se for help-guix@gnu.org; Sat, 16 Mar 2019 12:00:50 -0400 In-reply-to: List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: znavko@tutanota.com Cc: Help Guix 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? [=E2=80=A6] > Mentioned github page has no any use-modules string that can=20 > help. Look again. From system-config/os-main.scm: (al utils) And indeed, guile/modules/al/utils.scm has: (define (comma-separated . strings) "Return string by concatenating STRINGS with commas." (mapconcat identity strings ",")) You can copy the definition to your own configuration, or just=20 replace it with the (trivial) MAPCONCAT call directly, or just use=20 a comma-separated string to begin with. Kind regards, T G-R