all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jan <tona_kosmicznego_smiecia@interia.pl>
To: help-guix@gnu.org
Subject: Re: Trying to install Guix System on a nonfree computer, the system frezees at booting, bug?
Date: Tue, 23 Jul 2019 18:37:33 +0200	[thread overview]
Message-ID: <20190723183733.00001140@interia.pl> (raw)
In-Reply-To: <8736ixc8d1.fsf@elephly.net>

[-- Attachment #1: Type: text/plain, Size: 313 bytes --]

I've tried two things - graphical installation without any DE/WM with 
the DHCP client - same effect (the system fails to boot) and manual
installation using slim-service-type, where running 'guix system init /mnt/etc'
throws '/mnt/etc/config.scm:40:1 error: invalid field specifier'.
I attached the file below.


[-- Attachment #2: config-with-slim.scm --]
[-- Type: application/octet-stream, Size: 2034 bytes --]

(use-modules (gnu)
	     (gnu services)
             (srfi srfi-1))
(use-service-modules desktop networking ssh xorg)

(operating-system
 (host-name "computer")
 (timezone "Europe/Warsaw")
 (locale "pl_PL.utf8")
 (keyboard-layout (keyboard-layout "pl" "legacy"))
 (bootloader (bootloader-configuration
              (bootloader grub-efi-bootloader)
              (target "/boot/efi")
	      (keyboard-layout keyboard-layout)))
 (swap-devices (list "/dev/nvme0n1p2"))
 (file-systems (append
                (list (file-system
                       (mount-point "/boot/efi")
                       (device (uuid "C9C5-9923" 'fat32))
                       (type "vfat"))
		      (file-system
		       (mount-point "/")
		       (device (uuid "f585970b-dabc-458b-baa5-24bc9f192490"
				     'ext4))
		       (type "ext4")))
                %base-file-systems))
 (users (cons (user-account
               (name "testuser")
               (comment "")
               (group "users")
	       (home-directory "/home/testuser")
               (supplementary-groups '("wheel" "netdev"
                                       "audio" "video")))
              %base-user-accounts))

 (packages (append
	    (list (specification->package "nss-certs"))
            %base-packages))

 (services (append
	    (list (service dhcp-client-service-type)
		  (service slim-service-type (slim-configuration
                                              (display ":0")
                                              (vt "vt7")))
                  (service slim-service-type (slim-configuration
                                              (display ":1")
                                              (vt "vt8")))
                  (remove (lambda (service)
                            (eq? (service-kind service) gdm-service-type))
                          %desktop-services)))
	   %base-services))

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

  parent reply	other threads:[~2019-07-23 16:37 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <sjfbzubcyquxdxgytrgw@qjlw>
2019-07-22  5:20 ` Trying to install Guix System on a nonfree computer, the system frezees at booting, bug? pelzflorian (Florian Pelz)
2019-07-22 18:03   ` Jan
2019-07-23 10:37   ` Jan
2019-07-23 11:12     ` Ricardo Wurmus
2019-07-23 11:26       ` Jan
2019-07-23 12:35         ` Ricardo Wurmus
2019-07-23 16:37       ` Jan [this message]
2019-07-23 19:37         ` Ricardo Wurmus
2019-07-24  0:11         ` Jan
2019-07-24  6:15           ` pelzflorian (Florian Pelz)
2019-07-24 10:53           ` Jan
2019-07-24 12:16             ` pelzflorian (Florian Pelz)
2019-07-24 13:31             ` Jan
2019-07-24 15:03               ` pelzflorian (Florian Pelz)
2019-07-24 15:29               ` Jan
2019-07-24 15:43                 ` pelzflorian (Florian Pelz)
2019-07-22 15:07 ` Jovany Leandro G.C

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190723183733.00001140@interia.pl \
    --to=tona_kosmicznego_smiecia@interia.pl \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.