diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-02-19 20:58:24 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-02-19 20:58:24 +0100 |
commit | db4fdc04cc05495788ee54ae25baf8cd056917dc (patch) | |
tree | 53532ba52a48e6a8c81e26e5ffbc668906da3596 /guix | |
parent | 7fe492e8d956de17ad2af2ed0d1843a745d06e17 (diff) | |
download | gnu-guix-db4fdc04cc05495788ee54ae25baf8cd056917dc.tar gnu-guix-db4fdc04cc05495788ee54ae25baf8cd056917dc.tar.gz |
gnu: Introduce the (gnu services ...) modules.
* gnu/system/dmd.scm: Remove file. Move contents to...
* gnu/services.scm, gnu/services/base.scm, gnu/services/dmd.scm,
gnu/services/networking.scm, gnu/services/xorg.scm: ... here. New
files.
* gnu/system.scm, gnu/system/vm.scm: Adjust accordingly.
* guix/scripts/system.scm (%user-module): Likewise.
* doc/guix.texi (Using the Configuration System): Likewise.
(Defining Services): Likewise.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/scripts/system.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm index 5bb14c4383..7799ccbc47 100644 --- a/guix/scripts/system.scm +++ b/guix/scripts/system.scm @@ -36,7 +36,7 @@ (for-each (lambda (iface) (module-use! module (resolve-interface iface))) '((gnu system) - (gnu system dmd) + (gnu services) (gnu system shadow))) module)) |