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 14:16:58 -0400 Message-ID: <87wojx7osq.fsf@netris.org> References: <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]:41884) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFNEY-0006g7-Tw for help-guix@gnu.org; Sat, 13 Apr 2019 14:18:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFNEY-0007MJ-2y for help-guix@gnu.org; Sat, 13 Apr 2019 14:18:34 -0400 Received: from world.peace.net ([64.112.178.59]:46904) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hFNEX-0007LN-UL for help-guix@gnu.org; Sat, 13 Apr 2019 14:18:34 -0400 In-Reply-To: <55de548a77b73cc7cfd180b90ebb386b0b4beeea.camel@disroot.org> (Raghav Gururajan's message of "Sat, 13 Apr 2019 01:21:34 -0400") 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: > In continuation to my previous email, I tried to fix the error. But the old error is gone and I am getting new ones. > > The errors are: > /etc/rg-secondary.scm:47:24: warning: 'gnome-desktop-service' is deprecated, use 'gnome-desktop-service-type' instead > /etc/rg-secondary.scm:47:24: warning: 'gnome-desktop-service' is deprecated, use 'gnome-desktop-service-type' instead You could eliminate this warning by changing: (gnome-desktop-service) to: (service gnome-desktop-service-type) > ice-9/eval.scm:223:20: In procedure proc: > error: fprintd-service-type: unbound variable > hint: Did you forget a `use-modules' form? Ah, my mistake; you also need to import the 'fingerprint' service module, so change (use-service-modules desktop xorg) to: (use-service-modules desktop xorg fingerprint) Regards, Mark