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:59:38 +0100 Message-ID: <87ftjhyi4l.fsf@gmx.com> References: <87imodyisc.fsf@gmx.com> <87h83xyijg.fsf@gmx.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:39352) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iNkDF-0002V3-5T for bug-guix@gnu.org; Thu, 24 Oct 2019 17:00:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iNkDE-0006tS-0E for bug-guix@gnu.org; Thu, 24 Oct 2019 17:00:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:56439) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iNkDC-0006rT-TQ for bug-guix@gnu.org; Thu, 24 Oct 2019 17:00:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iNkDC-0003xL-On for bug-guix@gnu.org; Thu, 24 Oct 2019 17:00:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-reply-to: <87h83xyijg.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 Pierre Langlois writes: > (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))) Oh, I just realized (colord-service) is in %desktop-services already... ooops my bad! In gnome's settings it tells me that there are no devices that can be colour managed, I had assumed that was because colord was missing from the config but that's probably not it. Is it working for other people? If so it's probably just my hardware (ThinkPad x220). Sorry for the noise! Pierre