all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* wpa-supplicant service configuration. Guile is hard
@ 2019-04-04 19:26 znavko
  2019-04-04 20:01 ` Quiliro Ordonez
  2019-04-05 16:47 ` Ricardo Wurmus
  0 siblings, 2 replies; 11+ messages in thread
From: znavko @ 2019-04-04 19:26 UTC (permalink / raw)
  To: Help Guix


[-- Attachment #1.1: Type: text/plain, Size: 290 bytes --]

Hello! I am so novice in Guile.
I have trouble trying to add wpa-supplicant configuration to my config. I get this error:

# guix system reconfigure /etc/config.scm
guix system: error: service 'wpa-supplicant' provided more than once
Please, let me know where to place my wpa-config lines?

[-- Attachment #1.2: Type: text/html, Size: 685 bytes --]

[-- Attachment #2: config-wpa-notworls.scm --]
[-- Type: text/x-scheme, Size: 4045 bytes --]

;;this is znavko's cute config

(use-modules (gnu) (gnu system nss)
             (gnu system locale) ;;for locale-definition
             (gnu services desktop)
             ;;(gnu services dns) ;;for dnsmasq
             (srfi srfi-1) ;;for remove function
             (gnu services networking) ;;for remove ntp
             (gnu services avahi) ;;for remove avahi
             (gnu services xorg)
             ;;(gnu services databases);;for postgres
             (gnu packages admin) ;;for wpa_supplicant
)
(use-service-modules desktop)
(use-package-modules certs gnome)

;;(define %redundant-linux-modules '("pcspkr" "snd_pcsp"))

(operating-system (host-name "antelope") (timezone "Europe/Moscow") (locale "en_US.utf8")
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda")))
  (file-systems (cons (file-system
                        (device "/dev/sda1") (mount-point "/") (type "ext4"))
                      %base-file-systems))
  (swap-devices '("/dev/sda2"))

  (users (cons* (user-account (name "bob") (group "users")
                (supplementary-groups '("wheel" "netdev" "audio" "video"))
                (home-directory "/home/bob"))
                (user-account (name "mom") (group "users")
                (supplementary-groups '("wheel" "netdev" "audio" "video"))
                (home-directory "/home/mom"))
               %base-user-accounts))

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs         ;for HTTPS access
                   gvfs              ;for user mounts
		   ;;wpa-supplicant
		   isc-dhcp
                   %base-packages))

  (services (cons*  
                    ;;(service postgresql-service-type)
                    (service xfce-desktop-service-type)
                    (service wpa-supplicant-service-type 
                      (wpa-supplicant-configuration
                        (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))

                    (modify-services      
                      (remove (lambda (service)
                        (eq? (service-kind service)
                          ntp-service-type))
                         (remove (lambda (service)
                           (eq? (service-kind service)
                             avahi-service-type))

                              (modify-services  
                                (modify-services %desktop-services
                                  (slim-service-type config =>
                                    (slim-configuration
                                      (xorg-configuration
                                        (xorg-configuration
                                          (extra-config
                                                    
'("Section \"InputClass\"
        Identifier \"touchpad\"
        Driver \"libinput\"
        MatchIsTouchpad \"on\"
        Option \"Tapping\" \"on\"
EndSection")
                                            )))))
                                 )  ;end of modify-services 3rd

                                 (wpa-supplicant-service-type config =>
                                   (wpa-supplicant-configuration
                                     (config-file "/etc/wpa_supplicant/wpa_supplicant.conf")))

                               )  ;end of modify-services 2nd

                            )  ;end of remove avahi
                          )  ;end of remove2 ntp
                      (elogind-service-type
                        c => (elogind-configuration (handle-lid-switch 'ignore)))
                    );;end of modify-services 1st desktop-services
  ));;end of services

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss)


 (kernel-arguments '("modprobe.blacklist=pcspkr,snd_pcsp"))
 ;(kernel-arguments
 ;    (list (string-append "modprobe.blacklist="
 ;                         (apply comma-separated
 ;   %redundant-linux-modules))))

);;end of operating-system

  


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2019-04-06 17:55 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <LbdoDpd--3-1@tutanota.com-LbdrIe9----1>
2019-04-04 20:36 ` wpa-supplicant service configuration. Guile is hard znavko
     [not found] ` <Lbe0PNU--3-1@tutanota.com-Lbe3LhE----1>
2019-04-05  9:41   ` znavko
2019-04-05 16:38     ` Ricardo Wurmus
2019-04-06  8:54     ` znavko
2019-04-06  8:57     ` znavko
2019-04-06 17:55     ` znavko
2019-04-05 13:49   ` jbranso
2019-04-05 14:34     ` znavko
2019-04-04 19:26 znavko
2019-04-04 20:01 ` Quiliro Ordonez
2019-04-05 16:47 ` Ricardo Wurmus

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.