2014-04-05 22:40:16 +02:00
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
|
|
|
;;; Copyright © 2014 Ludovic Courtès <ludo@gnu.org>
|
|
|
|
;;;
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
;;; your option) any later version.
|
|
|
|
;;;
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
;;;
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
|
|
;;;
|
|
|
|
;;; This file defines an operating system configuration for the demo virtual
|
|
|
|
;;; machine images that we build.
|
|
|
|
;;;
|
|
|
|
|
2014-05-22 23:20:12 +02:00
|
|
|
(use-modules (gnu)
|
|
|
|
|
2014-04-05 22:40:16 +02:00
|
|
|
(gnu packages xorg)
|
2014-06-03 11:49:28 +02:00
|
|
|
(gnu packages avahi)
|
2014-07-10 00:31:31 +02:00
|
|
|
(gnu packages linux)
|
2014-07-12 23:14:10 +02:00
|
|
|
(gnu packages tor)
|
2014-04-05 22:40:16 +02:00
|
|
|
|
|
|
|
(gnu services networking)
|
2014-06-03 11:49:28 +02:00
|
|
|
(gnu services avahi)
|
|
|
|
(gnu services dbus)
|
2014-04-05 22:40:16 +02:00
|
|
|
(gnu services xorg))
|
|
|
|
|
|
|
|
(operating-system
|
|
|
|
(host-name "gnu")
|
|
|
|
(timezone "Europe/Paris")
|
2014-11-29 11:37:53 +01:00
|
|
|
(locale "en_US.utf8")
|
2014-05-31 22:01:05 +02:00
|
|
|
|
2014-05-18 21:58:01 +02:00
|
|
|
(bootloader (grub-configuration
|
|
|
|
(device "/dev/sda")))
|
2014-05-14 23:17:03 +02:00
|
|
|
(file-systems
|
2014-05-16 21:57:11 +02:00
|
|
|
;; We provide a dummy file system for /, but that's OK because the VM build
|
2014-05-14 23:17:03 +02:00
|
|
|
;; code will automatically declare the / file system for us.
|
2014-07-22 16:57:57 +02:00
|
|
|
(cons* (file-system
|
|
|
|
(mount-point "/")
|
|
|
|
(device "dummy")
|
|
|
|
(type "dummy"))
|
|
|
|
;; %fuse-control-file-system ; needs fuse.ko
|
|
|
|
;; %binary-format-file-system ; needs binfmt.ko
|
|
|
|
%base-file-systems))
|
2014-05-31 22:01:05 +02:00
|
|
|
|
2014-04-05 22:40:16 +02:00
|
|
|
(users (list (user-account
|
|
|
|
(name "guest")
|
2014-06-22 21:48:35 +02:00
|
|
|
(group "users")
|
|
|
|
(supplementary-groups '("wheel")) ; allow use of sudo
|
system: Make accounts and groups at activation time.
* gnu/services/base.scm (guix-build-accounts): Remove #:gid parameter;
add #:group. Remove 'password' and 'gid' fields in 'user-account'
form, and add 'group'.
(guix-service): Remove #:build-user-gid parameter. Remove 'id' field
in 'user-group' form.
* gnu/system.scm (etc-directory): Remove #:groups and #:accounts. No
longer produce files "passwd", "shadow", and "group". Adjust caller
accordingly.
(%root-account): New variable.
(operating-system-accounts): Add 'users' variable. Add %ROOT-ACCOUNT
only of 'operating-system-users' doesn't already contain a root
account.
(user-group->gexp, user-account->gexp): New procedures.
(operating-system-boot-script): Add calls to 'setenv' and
'activate-users+groups' in gexp.
* gnu/system/linux.scm (base-pam-services): Add PAM services for
"user{add,del,mode}" and "group{add,del,mod}".
* gnu/system/shadow.scm (<user-account>)[gid]: Rename to...
[group]: ... this.
[supplementary-groups]: New field.
[uid, password]: Default to #f.
(<user-group>)[id]: Default to #f.
(group-file, passwd-file): Remove.
* gnu/system/vm.scm (operating-system-default-contents)[user-directories]:
Remove. Add "/home" to the directives.
* guix/build/activation.scm (add-group, add-user,
activate-users+groups): New procedures.
2014-05-11 22:41:01 +02:00
|
|
|
(password "")
|
2014-04-05 22:40:16 +02:00
|
|
|
(comment "Guest of GNU")
|
|
|
|
(home-directory "/home/guest"))))
|
2014-05-31 22:01:05 +02:00
|
|
|
|
|
|
|
(issue "
|
|
|
|
This is an alpha preview of the GNU system. Welcome.
|
|
|
|
|
|
|
|
This image features the GNU Guix package manager, which was used to
|
|
|
|
build it (http://www.gnu.org/software/guix/). The init system is
|
|
|
|
GNU dmd (http://www.gnu.org/software/dmd/).
|
|
|
|
|
|
|
|
You can log in as 'guest' or 'root' with no password.
|
|
|
|
")
|
|
|
|
|
2014-04-09 20:54:10 +02:00
|
|
|
(services (cons* (slim-service #:auto-login? #t
|
|
|
|
#:default-user "guest")
|
2014-04-05 22:40:16 +02:00
|
|
|
|
|
|
|
;; QEMU networking settings.
|
|
|
|
(static-networking-service "eth0" "10.0.2.10"
|
|
|
|
#:name-servers '("10.0.2.3")
|
|
|
|
#:gateway "10.0.2.2")
|
|
|
|
|
2014-06-03 11:49:28 +02:00
|
|
|
(avahi-service)
|
|
|
|
(dbus-service (list avahi))
|
2014-07-12 23:14:10 +02:00
|
|
|
(tor-service)
|
2014-06-03 11:49:28 +02:00
|
|
|
|
2014-04-05 22:40:16 +02:00
|
|
|
%base-services))
|
2014-04-30 22:17:56 +02:00
|
|
|
(pam-services
|
|
|
|
;; Explicitly allow for empty passwords.
|
|
|
|
(base-pam-services #:allow-empty-passwords? #t))
|
2014-06-04 14:59:24 +02:00
|
|
|
|
2014-07-12 23:14:10 +02:00
|
|
|
(packages (cons* strace
|
|
|
|
tor torsocks
|
|
|
|
xterm avahi %base-packages)))
|