unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Vagrant Cascadian <vagrant@debian.org>
To: Andreas Enge <andreas@enge.fr>
Cc: help-guix@gnu.org
Subject: Re: Guix on Novena
Date: Wed, 02 Sep 2020 10:30:22 -0700	[thread overview]
Message-ID: <87zh6813yp.fsf@ponder> (raw)
In-Reply-To: <20200901180653.GA2323@jurong>


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

On 2020-09-01, Andreas Enge wrote:
> On Tue, Sep 01, 2020 at 09:41:04AM -0700, Vagrant Cascadian wrote:
>> I have one and had a Guix System install on it, but it's been some
>> months since I've booted it.
...
> Okay, if you get round to it, it would be most welcome if you could share
> your experience!

I haven't finished upgrading to a more recent guix, but attached is a
slightly trimmed down config that I used as recently as March.

live well,
  vagrant

[-- Attachment #1.2: config-novena.scm --]
[-- Type: application/octet-stream, Size: 2091 bytes --]

(use-modules (gnu) (gnu bootloader u-boot)
	     )
(use-service-modules networking ssh)
(use-package-modules bootloaders screen ssh)

(operating-system
  (host-name "HOSTNAME")
  (timezone "US/Pacific")
  (locale "en_US.utf8")

  (bootloader (bootloader-configuration
                (bootloader u-boot-novena-bootloader)
                (target "/dev/mmcblk1")))

  ;; These modules are required to mount the SATA partition.
  (initrd-modules (cons* "ahci_imx" "libata" "sd_mod" %base-initrd-modules))

  (file-systems (cons (file-system
                        (device (uuid "YOUR_UUID_HERE"))
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))
  
  ;; This is where user accounts are specified.  The "root"
  ;; account is implicit, and is initially created with the
  ;; empty password.
  (users (cons* (user-account
                (name "myusername")
                (comment "")
                (group "users")

                ;; Adding the account to the "wheel" group
                ;; makes it a sudoer.  Adding it to "audio"
                ;; and "video" allows the user to play sound
                ;; and access the webcam.
                (supplementary-groups '("wheel"
                                        "audio" "video"))
                (home-directory "/home/myuesrname"))
               %base-user-accounts))

  ;; Globally-installed packages.
  (packages (cons* screen openssh u-boot-novena %base-packages))

  (services (cons*
	     (service network-manager-service-type)
	     (service wpa-supplicant-service-type)
	     ;; (dhcp-client-service)
	     (service ntp-service-type
	      (ntp-configuration
	       (allow-large-adjustment? #t))
	      )
             ;; mingetty does not work on serial lines.
             ;; Use agetty with board-specific serial parameters.
             (agetty-service
              (agetty-configuration
               (extra-options '("-L"))
               (baud-rate "115200")
               (term "screen")
               (tty "ttymxc1")))
	     )))

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

  reply	other threads:[~2020-09-02 17:32 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-01  9:38 Guix on Novena Andreas Enge
2020-09-01 16:41 ` Vagrant Cascadian
2020-09-01 18:06   ` Andreas Enge
2020-09-02 17:30     ` Vagrant Cascadian [this message]
2020-09-02 18:05       ` Andreas Enge
2020-09-02 18:33         ` Vagrant Cascadian
2020-09-06  8:45           ` Andreas Enge
2020-09-06 14:23             ` Vagrant Cascadian
2020-09-07 20:12               ` Andreas Enge
2020-09-07 12:11             ` Andreas Enge
2020-09-08 10:56             ` Andreas Enge
2020-09-08 12:30               ` Efraim Flashner

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to=87zh6813yp.fsf@ponder \
    --to=vagrant@debian.org \
    --cc=andreas@enge.fr \
    --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.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).