From mboxrd@z Thu Jan 1 00:00:00 1970 From: Omar Radwan Subject: Advanced Config Template Date: Mon, 19 Jan 2015 19:42:47 -0800 Message-ID: Mime-Version: 1.0 Content-Type: multipart/alternative; boundary=001a11c162f878ff8d050d0d3b0a Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDPiK-0001s6-HO for guix-devel@gnu.org; Mon, 19 Jan 2015 22:42:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YDPiJ-0007TI-Jr for guix-devel@gnu.org; Mon, 19 Jan 2015 22:42:48 -0500 Received: from mail-qc0-x22c.google.com ([2607:f8b0:400d:c01::22c]:47314) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YDPiJ-0007TE-Fw for guix-devel@gnu.org; Mon, 19 Jan 2015 22:42:47 -0500 Received: by mail-qc0-f172.google.com with SMTP id i8so20398377qcq.3 for ; Mon, 19 Jan 2015 19:42:47 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --001a11c162f878ff8d050d0d3b0a Content-Type: text/plain; charset=UTF-8 I'm trying to install guix in a way that I have X, tor and networking on the fly right after install, but I'm having a very hard time with the declaration services. This is my config.scm (use-modules (gnu)) (operating-system (host-name "Atom") (timezone "US/Pacific") (locale "en_US.UTF-8") (bootloader (grub-configuration (device "/dev/sda"))) (file-systems (cons (file-system (device "/dev/sda1") (mount-point "/") (type "ext4")) %base-file-systems)) (users (list (user-account (name "omar") (group "users") (supplementary-groups '("wheel" "audio" "video")) (home-directory "/home/omar"))))) I'm not sure how I would exactly be able to do it, but I barely know anything about Scheme and how its functions work, I hope I'm not wasting anyones time by asking a stupid question like this, and I hope someone would be able to help me. --001a11c162f878ff8d050d0d3b0a Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable
I'm trying to install guix in a way that I have X, tor= and networking on the fly right after install, but I'm having a very h= ard time with the declaration services. This is my config.scm

(use-modules=
 (gnu))

(operating-system
  (host-name "Atom")
  (timezone "US/Pacific")
  (locale "en_US.UTF-8")
  (bootloader (grub-configuration (device "/dev/sda")))
  (file-systems (cons (file-system
                        (device "/dev/sda1")
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))
  (users (list (user-account
                (name "omar")
                (group "users")

               =20
                (supplementary-groups '("wheel"
                                        "audio" "video"=
))
                (home-directory "/home/omar")))))


<=
br>
I'm not sure how I would exactly be able to do it, but I barely know=
 anything about Scheme and how its functions work, I hope I'm not wasti=
ng anyones time by asking a stupid question like this, and I hope someone w=
ould be able to help me. 
--001a11c162f878ff8d050d0d3b0a--