all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* difficulty getting networking working on new install
@ 2018-08-01 18:36 Benjamin Slade
  2018-08-02  8:31 ` Chris Marusich
  0 siblings, 1 reply; 4+ messages in thread
From: Benjamin Slade @ 2018-08-01 18:36 UTC (permalink / raw)
  To: help-guix

I'm having some trouble getting networking up on my new GuixSD
install. Using the livecd (which I installed with), I used
wpa_supplicant+dhclient (as per
https://www.gnu.org/software/guix/manual/en/html_node/Preparing-for-Installation.html)
and that worked without issue, but the same method didn't work on my
actual install. (it seems to try to use IPv6?) I ultimately want to use
NetworkManager, but I just wanted to get some sort of connection working
to start with.

I have included in my `config.scm` the "%desktop-services" bit, so I
thought this should provide NetworkManager, but I don't seem able to use
it (I'm not sure how to configure it in guixsd, and I also find no
applet.)

This is the config.scm I've ended up with:

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce where the
;; root partition is encrypted with LUKS.

(use-modules (gnu) (gnu system nss) (gnu packages lisp) (gnu packages wm))
(use-service-modules desktop)
(use-package-modules certs gnome wm)

(operating-system
  (host-name "guixy")
  (timezone "US/Mountain")
  (locale "en_GB.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  ;; -> actually using BIOS because guixsd 0.15 live usb didn't probe efi
;  (bootloader (grub-configuration (device "/dev/sda")))
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda")))

  ;; Specify a mapped device for the encrypted root partition.
  ;; The UUID is that returned by 'cryptsetup luksUUID'.
  (mapped-devices
   (list (mapped-device
          (source (uuid "79c67b23-d4ac-4be9-a617-9d83beed9694"))
          (target "guiksdelux")
          (type luks-device-mapping))
	  ))

  (file-systems (cons* (file-system
                        (device "/dev/mapper/guiksdelux")
                        (mount-point "/")
                        (type "ext4")
                        (dependencies mapped-devices))
                       %base-file-systems))

  (users (cons (user-account
                (name "emacsomancer")
                (comment "E. Max O'Mancer")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video"))
                (home-directory "/home/slade"))
               %base-user-accounts))

  ;; Add GNOME and/or Xfce---we can choose at the log-in
  ;; screen with F1.  Use the "desktop" services, which
  ;; include the X11 log-in service, networking with
  ;; NetworkManager, and more.
  (packages (cons* sbcl-stumpwm awesome ;window managers
		   nss-certs                      ;for HTTPS access
                   gvfs              ;for user mounts
                   %base-packages))


  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
(services (cons*  (xfce-desktop-service)
		   %desktop-services))

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

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

end of thread, other threads:[~2018-08-03 17:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-01 18:36 difficulty getting networking working on new install Benjamin Slade
2018-08-02  8:31 ` Chris Marusich
2018-08-02 12:22   ` vikram sai balaji ulaganathan
2018-08-03 17:02   ` Benjamin Slade

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.