summary refs log tree commit diff
path: root/build-aux
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-05-22 23:20:12 +0200
committerLudovic Courtès <ludo@gnu.org>2014-05-22 23:24:13 +0200
commitc9384945984c393ef1a15efb5c07e272a27a2215 (patch)
tree090a2bb367ecb404225cb04afeaeeb6e18c11e6e /build-aux
parentf19c6e5fe79c8bbd3c9ea25cd0380681bd99ce13 (diff)
downloadguix-c9384945984c393ef1a15efb5c07e272a27a2215.tar.gz
Add (gnu) module.
* gnu.scm: New file.
* gnu-system.am (GNU_SYSTEM_MODULES): Add it.
* build-aux/hydra/demo-os.scm: Use (gnu) and strip import list
  accordingly.
* doc/guix.texi (Using the Configuration System): Adjust example
  accordingly.
Diffstat (limited to 'build-aux')
-rw-r--r--build-aux/hydra/demo-os.scm11
1 files changed, 3 insertions, 8 deletions
diff --git a/build-aux/hydra/demo-os.scm b/build-aux/hydra/demo-os.scm
index 5f0fd6a6f8..863371291e 100644
--- a/build-aux/hydra/demo-os.scm
+++ b/build-aux/hydra/demo-os.scm
@@ -22,9 +22,10 @@
 ;;; machine images that we build.
 ;;;
 
-(use-modules (gnu packages zile)
+(use-modules (gnu)
+
+             (gnu packages zile)
              (gnu packages xorg)
-             (gnu packages base)
              (gnu packages admin)
              (gnu packages guile)
              (gnu packages bash)
@@ -33,12 +34,6 @@
              (gnu packages tor)
              (gnu packages package-management)
 
-             (gnu system grub)                    ; 'grub-configuration'
-             (gnu system shadow)                  ; 'user-account'
-             (gnu system linux)                   ; 'base-pam-services'
-             (gnu system file-systems)            ; 'file-systems'
-
-             (gnu services base)
              (gnu services networking)
              (gnu services xorg))