help-guix
[Top][All Lists]
Advanced

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

install a Printer


From: Gottfried
Subject: install a Printer
Date: Tue, 15 Feb 2022 16:45:34 +0000

Hi,

I tried to adjust my /etc/config.scm file, but I made some mistake.

Could anybody help me please?

here the file: (my changes are in bold letters)

(I have installed cups, cups-filters, hplip in my guix system)


;; This is an operating system configuration generated

;; by the graphical installer.

(use-modules (gnu))
(use-service-modules desktop networking ssh xorg *cups*)

(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")))
                %base-user-accounts))
  (packages
    (append
      (list (specification->package "awesome")
            (specification->package "nss-certs"))
      %base-packages))
  (services
    (append
      (list (service mate-desktop-service-type)
            (service enlightenment-desktop-service-type)
            (service openssh-service-type)
            (service tor-service-type)
            (set-xorg-configuration
              (xorg-configuration
                (keyboard-layout keyboard-layout))))
      %desktop-services))
*(cups-service-type)**
**            (cups-configuration**
**            (web-interface? #t**
**            (extensions list cups-filters hplip))))*
  (bootloader
    (bootloader-configuration
      (bootloader grub-efi-bootloader)
      (target "/boot/efi")
      (keyboard-layout keyboard-layout)))
  (swap-devices
    (list (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)))


After running: sudo guix system reconfigure /etc/config.scm

it said:

35:16: Fehler: (cups-service-type): invalid field specifier     Fehler(german word means mistake)

What do I have to change?


Gottfried


reply via email to

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