From mboxrd@z Thu Jan 1 00:00:00 1970 From: Brett Gilio Subject: Re: Package variation Date: Wed, 24 Oct 2018 16:02:02 -0500 Message-ID: <87mur3kqid.fsf@posteo.net> References: <87pnw1p34m.fsf@posteo.net> <87d0rz4hq3.fsf@gnu.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]:34076) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFQIB-0006uV-6k for guix-devel@gnu.org; Wed, 24 Oct 2018 17:02:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFQI6-0002KQ-3F for guix-devel@gnu.org; Wed, 24 Oct 2018 17:02:15 -0400 Received: from mout02.posteo.de ([185.67.36.66]:47693) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gFQI5-0002JF-Ng for guix-devel@gnu.org; Wed, 24 Oct 2018 17:02:09 -0400 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 515732400FC for ; Wed, 24 Oct 2018 23:02:08 +0200 (CEST) In-reply-to: <87d0rz4hq3.fsf@gnu.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ludovic =?utf-8?Q?Court=C3=A8s?= Cc: Guix-devel Ludovic Court=C3=A8s writes: > Hi! > > Brett Gilio skribis: > >> I am trying to customize my the default gnome-package which gets >> installed with the gnome-desktop-service. > > On this topic, don=E2=80=99t miss Chris=E2=80=99s excellent tutorial: > > https://gnu.org/software/guix/blog/2018/customize-guixsd-use-stock-ssh-= agent-everywhere/ > > :-) > > Ludo=E2=80=99. Thank you for the feedback Ludo. I read the article and made some customizations, but something about setting the gnome-custom package is still resulting in the regular gnome meta-package being used. I did some interactive debugging using Guile, and it seems like nautilus is being successfully removed, which is why my suspicion is on the package setting being invalid. I've also tried a myriad of different ways of setting the gnome-custom package, none of which seem to be resulting in nautilus being removed. This isn't about "nautilus" per-say, but rather being able to customize how gnome is used on my system. Here is my current config. (use-modules (gnu) (gnu system nss) (guix packages) (srfi srfi-1) (ice-9 ma= tch)) (use-service-modules desktop) (use-package-modules certs gnome) (define-public gnome-custom (package (inherit gnome) (name "gnome-custom") (propagated-inputs (remove (match-lambda ((name _) (string=3D? name "nautilus"))) (package-propagated-inputs gnome))))) (operating-system ... (services (cons* (gnome-desktop-service #:config (gnome-desktop-configuration (gnome-package gnome-custom))) %desktop-services)) Any ideas?