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! :-)

(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)))

Reply via email to