From mboxrd@z Thu Jan 1 00:00:00 1970 From: swedebugia@riseup.net Subject: Deleting services from %desktop-services in operating system declaration Date: Wed, 20 Jan 2016 13:42:11 +0100 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60467) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aLs5a-0004kQ-6N for help-guix@gnu.org; Wed, 20 Jan 2016 07:42:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aLs5V-0001Kw-Jo for help-guix@gnu.org; Wed, 20 Jan 2016 07:42:18 -0500 Received: from mx1.riseup.net ([198.252.153.129]:36419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aLs5V-0001KM-Bf for help-guix@gnu.org; Wed, 20 Jan 2016 07:42:13 -0500 Received: from cotinga.riseup.net (unknown [10.0.1.164]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK)) by mx1.riseup.net (Postfix) with ESMTPS id 341E71A1D24 for ; Wed, 20 Jan 2016 12:42:12 +0000 (UTC) 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-bounces+gcggh-help-guix=m.gmane.org@gnu.org To: help-guix Hi I have trouble getting the syntax right to delete avahi and wicd from my config.scm. This did not work (inspecting with the REPL): (services (cons* (tor-service) %desktop-services)) (modify-services (alist-delete wicd-service %desktop-services)) (modify-services (alist-delete avahi-service %desktop-services)) Neither this: (services (cons* (tor-service) %desktop-services)) (modify-services (alist-delete wicd-service avahi-service %desktop-services)) The manual does not yet have examples of how to delete one or more entries from the %base-services or other lists. Help would be appreciated :) cheers swedebugia