all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: myglc2 <myglc2@gmail.com>
To: John Darrington <john@darrington.wattle.id.au>
Cc: guix-devel@gnu.org
Subject: Re: Graphical Installer - Call for Testing.
Date: Fri, 06 Jan 2017 23:55:21 -0500	[thread overview]
Message-ID: <86tw9bh3k6.fsf@gmail.com> (raw)
In-Reply-To: <86vatrhatc.fsf@gmail.com>

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


Oops, herewith the attachment for previous email.

> In my case I want emacs, so I put emacs in my system configs.

Another rationale for installing emacs in the system config is the very
nice emacs-guix tools for package search and config management. It seems
to me that emacs could also be used to create a less emacsen-ish config
manager, if that was desired.


[-- Attachment #2: system8.scm --]
[-- Type: application/octet-stream, Size: 1843 bytes --]

;;; g1 system config
(use-modules (gnu))
(use-service-modules networking ssh
		     )
(use-package-modules
 admin
 base                  ; glibc-utf8-locales gnu-make
 disk                  ; parted
 linux                 ; mdadm
 package-management    ; guix
 cups
 qemu
 screen
 ghostscript           ; gs-fonts
 fonts                 ; font-dejavu font-gnu-freefont-ttf
 ssh                   ; openssh
 xorg                  ; xauth
 certs
 rsync
 wget
 version-control       ; git
 aspell
 emacs                 ; flycheck paredit magit emacs-*
 scheme                ; sicp
 gv                    ; for PDF in emacs-no-x-toolkit 
 )
(operating-system
  (host-name "g1")
  (timezone "America/New_York")
  (locale "en_US.utf8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (file-systems (cons (file-system
			(device "ssd-root")
			(title 'label)
			(mount-point "/")
			(type "ext4"))
		      %base-file-systems))
  (users (cons* (user-account
		 (name "glc")
		 (group "users")
		 (supplementary-groups '("wheel"))
		 (home-directory "/home/glc"))
		(user-account
		 (name "g1")
		 (group "users")
		 (supplementary-groups '("wheel" "kvm"))
		 (home-directory "/home/g1"))
		%base-user-accounts))
  (packages
   (cons*
    glibc-utf8-locales
    gnu-make
    parted
    mdadm
    guix
    cups
    qemu
    screen
    openssh nss-certs xauth
    rsync wget
    git
    gs-fonts font-dejavu font-gnu-freefont-ttf
    aspell
    emacs-no-x-toolkit
    flycheck paredit magit
    emacs-zenburn-theme emacs-markdown-mode emacs-web-mode emacs-simple-httpd
    geiser-next    ; temporary for 'C-c C-d C-d' to work
    sicp           ; SICP Info
    gv          ; for PDF in emacs-no-x-toolkit
    %base-packages))
  (services
   (cons*
    (dhcp-client-service)
    (lsh-service #:port-number 22)
    %base-services	  
    ))
  )

  reply	other threads:[~2017-01-07  4:49 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-04  7:59 Graphical Installer - Call for Testing John Darrington
2017-01-04 13:18 ` Thomas Danckaert
2017-01-04 18:44   ` John Darrington
2017-01-04 15:54 ` dian_cecht
2017-01-04 16:36   ` Ricardo Wurmus
2017-01-04 18:52   ` John Darrington
2017-01-06  3:23 ` Thompson, David
2017-01-07 16:02   ` Christopher Allan Webber
2017-01-06 20:53 ` myglc2
2017-01-06 21:50   ` John Darrington
2017-01-07  2:18     ` myglc2
2017-01-07  4:55       ` myglc2 [this message]
2017-01-07 20:35         ` Alex Kost
2017-01-07  8:05       ` John Darrington
2017-01-08 18:47       ` Taylan Ulrich Bayırlı/Kammer
2017-01-08 19:28         ` John Darrington
2017-01-08 22:34 ` Ludovic Courtès
2017-01-09 12:31   ` John Darrington
2017-01-10  8:39     ` Ludovic Courtès
2017-01-10 11:57       ` John Darrington
2017-01-13  5:40 ` Chris Marusich
2017-01-13  6:35   ` John Darrington
2017-01-13  7:03     ` Chris Marusich
2017-01-14 13:24       ` David Craven
2017-01-22 14:41         ` John Darrington
2017-01-15  4:06     ` Chris Marusich
2017-01-15  6:55       ` John Darrington
2017-01-15  9:20         ` Chris Marusich
2017-01-15 11:56           ` John Darrington
2017-01-16  9:34             ` Ludovic Courtès
2017-01-16 12:35               ` John Darrington
2017-01-16 17:18           ` John Darrington
2017-01-18  9:36             ` Chris Marusich
2017-07-05 17:27       ` Danny Milosavljevic
2017-07-07  4:48         ` Chris Marusich
2017-07-07  6:13           ` Danny Milosavljevic
2017-07-07 11:37             ` Ludovic Courtès
2017-07-12 11:30               ` Danny Milosavljevic
2017-07-12 17:31                 ` Danny Milosavljevic
2017-07-17 13:34                 ` Ludovic Courtès

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=86tw9bh3k6.fsf@gmail.com \
    --to=myglc2@gmail.com \
    --cc=guix-devel@gnu.org \
    --cc=john@darrington.wattle.id.au \
    /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.