From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark H Weaver Subject: Re: 1) Lid Buttons 2) Stylus Input 3) Fingerprint Scanner Date: Sat, 13 Apr 2019 22:46:04 -0400 Message-ID: <87imvh7188.fsf@netris.org> References: <87wojx7osq.fsf@netris.org> <987892fb46a1f6c22736cd8a6ab63a94e5063b31.camel@disroot.org> <87sgunvzxy.fsf@netris.org> <87o95bvz8a.fsf@netris.org> <55de548a77b73cc7cfd180b90ebb386b0b4beeea.camel@disroot.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:46315) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFVBG-0003xO-Ab for help-guix@gnu.org; Sat, 13 Apr 2019 22:47:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFVBE-0001sK-Tr for help-guix@gnu.org; Sat, 13 Apr 2019 22:47:42 -0400 Received: from world.peace.net ([64.112.178.59]:47636) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hFVBE-0001rv-P7 for help-guix@gnu.org; Sat, 13 Apr 2019 22:47:40 -0400 In-Reply-To: (Raghav Gururajan's message of "Sat, 13 Apr 2019 21:46:04 +0000") 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: Raghav Gururajan Cc: help-guix@gnu.org, =?utf-8?Q?Cl=C3=A9ment?= Lassieur Hi Raghav, "Raghav Gururajan" writes: > So my latest config is: > > (use-modules > (gnu) > (gnu system nss) > (gnu services fingerprint) > (use-service-modules desktop) > (use-package-modules certs gnome) [...] > For the above, the error is: > > guix system: error: failed to load '/etc/rg-secondary.scm': > ice-9/boot-9.scm:2803:6: In procedure resolve-interface: > no code for module (gnu services fingerprint) Please remove (gnu services fingerprint) from your 'use-modules' form. Sorry, I had asked you to add it, but it was a mistake from the manual, which gives the wrong module name. The correct module name is: (gnu services authentication) which you can import by adding "authentication" to the 'use-service-modules' form. This should fix the "unbound variable" error. In an earlier message you spoke of another error: > but then new error regarding specifying values. :( If you're still getting that error, can you show us the exact error message and the configuration file that caused it? Regards, Mark