Hi and happy Easter!

> Hello, how have you installed gvfs? I'm assuming xfce is in your
> system config, is that where you listed gvfs as well? That's what I
> have in my xfce install and it works for me.

I have this in my config.scm, other programs I install in my profile
and those are the ones that fail on start.

   (packages (append (list xfce4-whiskermenu-plugin
                          xfce4-places-plugin
                          thunar-archive-plugin
                          thunar-shares-plugin
                          thunar-volman
                          network-manager-openvpn)
                    %base-packages))

  (services
   (cons* (service xfce-desktop-service-type)
          (service cups-service-type)
          (set-xorg-configuration
           (xorg-configuration (keyboard-layout keyboard-layout)))
          (service gvfs-service-type)
           ;; This is the default list of services we
           ;; are appending to.
          (modify-services
           %desktop-services
           (network-manager-service-type config =>
                                         (network-manager-configuration
                                          (dns "none")
                                          (vpn-plugins (list
  network-manager-openvpn)))) (static-networking-service-type configs =>
             (map (lambda (config)
                    (static-networking (inherit config)
                                       ;;Quad9 DNS
                                       (name-servers '("9.9.9.9"
  "149.112.112.112" "2620:fe::fe" "2620:fe::9")))) configs))
           ;;add non-guix substitutes
           (guix-service-type config => (guix-configuration
               (inherit config)
               (substitute-urls
                (append (list "https://substitutes.nonguix.org";)
                  %default-substitute-urls))
               (authorized-keys
                (append
                 (list (plain-file "non-guix.pub" "(public-key (ecc
  (curve Ed25519) (q
  #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#)))"))
  %default-authorized-guix-keys)))))))

Reply via email to