From mboxrd@z Thu Jan 1 00:00:00 1970 From: mikadoZero Subject: Unexpected XDG and GTK+ with system reconfigure Date: Sat, 13 Apr 2019 10:42:41 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:38742) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hFJsa-0007FZ-NE for help-guix@gnu.org; Sat, 13 Apr 2019 10:43:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hFJsZ-0001Cx-SY for help-guix@gnu.org; Sat, 13 Apr 2019 10:43:40 -0400 Received: from forward101o.mail.yandex.net ([37.140.190.181]:39169) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hFJsZ-0001Aq-2t for help-guix@gnu.org; Sat, 13 Apr 2019 10:43:39 -0400 Received: from mxback4o.mail.yandex.net (mxback4o.mail.yandex.net [IPv6:2a02:6b8:0:1a2d::1e]) by forward101o.mail.yandex.net (Yandex) with ESMTP id 83DB43C018DD for ; Sat, 13 Apr 2019 17:43:34 +0300 (MSK) 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: help-guix I am seeing some unexpected activity listed in the output of `guix system reconfigure`. I am not expecting to see: * XDG activity as the system configuration does not include anything related to xorg * GTK+ activity as there are no graphical programs in the system configuration The four unexpected activities are: creating GTK+ icon theme cache... building cache files for GTK+ input methods... building XDG desktop file cache... building XDG MIME database... How can I stop these activities for happening when the system reconfigures? `which gtk+` which: no gtx+ in ... `which xorg-server` which: no xorg-server in ... The services and packages part of my system configuration are: ... (use-service-modules networking ssh virtualization) ... (use-package-modules certs virtualization) ... (packages (cons* nss-certs qemu %base-packages)) ... (services (cons* (service dhcp-client-service-type) (service openssh-service-type (openssh-configuration (port-number 2222))) (service qemu-binfmt-service-type (qemu-binfmt-configuration (platforms (lookup-qemu-platforms "arm" "aarch64" "ppc" "mips64el")) (guix-support? #t))) %base-services)))