From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Network Manager Service Date: Sun, 27 Nov 2016 21:42:10 +0100 Message-ID: <87eg1wmz8d.fsf@gnu.org> References: <3bc5b721a8b3a69692e3bf52b13bc5f0@openmailbox.org> <87lgwd1at2.fsf@gnu.org> <874m31xijr.fsf@gmail.com> <87y40dvt1d.fsf@gnu.org> <4fafee90348a41b9cebf93bdefc8fd76@openmailbox.org> <87mvgq7ebm.fsf@gnu.org> <87k2bth1ai.fsf@gmail.com> <87lgw8wpz1.fsf@gnu.org> <901851e2bd910348a9d3ae0fa76ce183@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37826) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cB6HB-0001UN-Jq for help-guix@gnu.org; Sun, 27 Nov 2016 15:42:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cB6H6-0007Eu-PF for help-guix@gnu.org; Sun, 27 Nov 2016 15:42:17 -0500 In-Reply-To: <901851e2bd910348a9d3ae0fa76ce183@openmailbox.org> (rennes@openmailbox.org's message of "Sat, 26 Nov 2016 18:23:33 -0600") 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: rennes@openmailbox.org Cc: help-guix@gnu.org Hi, rennes@openmailbox.org skribis: > I'm reconfiguring my GuixSD to test the new commits, but i have the > following error: > > /home/jin/txt/os-config-bare-bones-1.scm:12:3: In procedure > #: > /home/jin/txt/os-config-bare-bones-1.scm:12:3: In procedure > module-lookup: Unbound variable: wpa-supplicant-service [...] > (define %desktop-services-sans-wicd > (cons* > (network-manager-service) > (wpa-supplicant-service) You need to replace this last line with: (service wpa-supplicant-type wpa-supplicant) and, thus, you need to have: (use-modules (gnu packages admin)) or similar so that the =E2=80=98wpa-supplicant=E2=80=99 variable is visible. HTH! Ludo=E2=80=99.