help-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: unbound variable in attempt to install cinnamon-desktop


From: Gottfried
Subject: Re: unbound variable in attempt to install cinnamon-desktop
Date: Thu, 11 May 2023 11:42:59 +0000

Hi,

Am 11.05.23 um 13:35 schrieb Marek Paśnikowski:
Fehler: cinnamon-desktop-service-type: Nicht gebundene Variable

Perfect.

You need to include the module implementing the Cinnamon desktop /service/.
It does not appear to be defined anywhere in GUIX.

Did you add a channel with a Cinnamon service
or just assumed it exists in GUIX?

I don’t know what to add, becaus for the MATE desktop there seems to me
is only one line..........
So I guessed that for cinnamon desktop there is also only one line to add.

I don’t know what I have to add in order to get the cinnamon desktop available.


config.scm
;; This is an operating system configuration generated
;; by the graphical installer.

(use-modules (gnu))
(use-package-modules cups scanner)
(use-service-modules cups desktop networking ssh xorg virtualization)

(operating-system
  (locale "de_DE.utf8")
  (timezone "Europe/Berlin")
  (keyboard-layout (keyboard-layout "de"))
  (host-name "Tuxedo")
  (users (cons* (user-account
                  (name "gfp")
                  (comment "Gfp")
                  (group "users")
                  (home-directory "/home/gfp")
                  (supplementary-groups
                    '("wheel" "netdev" "audio" "video" "libvirt")))
                %base-user-accounts))
  (packages
    (append
      (list (specification->package "nss-certs"))
      %base-packages))
  (services
    (append
      (list (service mate-desktop-service-type)
            (service enlightenment-desktop-service-type)
            (service cinnamon-desktop-service-type)
                        (service cups-service-type
                                (cups-configuration
                                        (web-interface? #t)
(extensions (list cups-filters hplip))))
                        (service openssh-service-type)
            (service tor-service-type)
            (set-xorg-configuration
              (xorg-configuration
               (keyboard-layout keyboard-layout)))
(service libvirt-service-type
                     (libvirt-configuration
                      (unix-sock-group "libvirt")
                      (tls-port "16555")))
            (service virtlog-service-type
                     (virtlog-configuration
                      (max-clients 1000))))

       (modify-services %desktop-services
         (guix-service-type
                config => (guix-configuration
                  (inherit config)
(extra-options (list "--gc-keep-derivations=yes" "--gc-keep-outputs=yes"))))
         (sane-service-type _ => sane-backends))))

  (bootloader
    (bootloader-configuration
      (bootloader grub-efi-bootloader)
      (targets (list "/boot/efi"))
      (keyboard-layout keyboard-layout)))
  (swap-devices
   (list (swap-space
          (target (uuid "51d5cd20-4513-4a02-9e35-df4338eccaa0")))))
  (file-systems
    (cons* (file-system
             (mount-point "/boot/efi")
             (device (uuid "BB77-FE3B" 'fat32))
             (type "vfat"))
           (file-system
             (mount-point "/")
             (device
               (uuid "4fb0ed7c-61ab-45eb-be0b-ff527b320e6d"
                     'ext4))
             (type "ext4"))
           %base-file-systems))
  (initrd-modules (cons "virtio_scsi"    ; Needed to find the disk
                        %base-initrd-modules)))



--
Kind regards

Gottfried


Attachment: OpenPGP_0x61FAF349C9FB7F94.asc
Description: OpenPGP public key

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]