From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pierre Langlois Subject: bug#37911: Cannot build a system with colord-service. Date: Thu, 24 Oct 2019 21:50:43 +0100 Message-ID: <87h83xyijg.fsf@gmx.com> References: <87imodyisc.fsf@gmx.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:38390) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iNk4V-0005Nh-G5 for bug-guix@gnu.org; Thu, 24 Oct 2019 16:51:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iNk4U-0003ZW-Iv for bug-guix@gnu.org; Thu, 24 Oct 2019 16:51:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56430) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iNk4U-0003ZS-FJ for bug-guix@gnu.org; Thu, 24 Oct 2019 16:51:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iNk4U-0003ju-BO for bug-guix@gnu.org; Thu, 24 Oct 2019 16:51:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <87imodyisc.fsf@gmx.com> List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 37911@debbugs.gnu.org --=-=-= Content-Type: text/plain Pierre Langlois writes: > Hello Guix! > > I tried to add (service colord-service) to my config and I got a > error back :-(. I reduced my system to the minimum but the problem is > persist. > > Here's the backtrace I get with the colord-system.scm config attached: And now attached with the correct mime type... sorry! :-) --=-=-= Content-Type: text/plain Content-Disposition: attachment; filename=colord-system.scm (use-modules (gnu bootloader grub) (gnu bootloader) (gnu services desktop) (gnu system file-systems)) (operating-system (host-name "hello") (bootloader (bootloader-configuration (bootloader grub-efi-bootloader) (target "/boot/efi"))) (file-systems (cons* (file-system (device (file-system-label "guix")) (mount-point "/") (type "ext4")) (file-system (device "/dev/nvme0n1p1") (mount-point "/boot/efi") (type "vfat")) (file-system (device (file-system-label "data")) (mount-point "/home") (type "ext4")) %fuse-control-file-system %base-file-systems)) (timezone "Europe/London") (locale "en_GB.UTF-8") (users (cons* (user-account (name "pierre") (uid 1000) (group "users")) %base-user-accounts)) (services (cons* (colord-service) %desktop-services))) --=-=-=--