help-guix
[Top][All Lists]
Advanced

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

Re: install a Printer


From: Gary Johnson
Subject: Re: install a Printer
Date: Thu, 17 Feb 2022 20:39:45 -0500

Lieber Gottfried,

  Schreib genau wie so:


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

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

(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
  (cons* (specification->package "awesome")
         (specification->package "nss-certs")
         %base-packages))
 (services
  (cons* (service mate-desktop-service-type)
         (service enlightenment-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)))
         %desktop-services))
 (bootloader
  (bootloader-configuration
   (bootloader grub-efi-bootloader)
   (targets '("/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)))


-- 
GPG Key ID: 7BC158ED
Use `gpg --search-keys lambdatronic' to find me
Protect yourself from surveillance: https://emailselfdefense.fsf.org
=======================================================================
()  ascii ribbon campaign - against html e-mail
/\  www.asciiribbon.org   - against proprietary attachments

Why is HTML email a security nightmare? See https://useplaintext.email/

Please avoid sending me MS-Office attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html



reply via email to

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