summaryrefslogtreecommitdiff
path: root/gnu/services/base.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-05-09 22:58:46 +0200
committerLudovic Courtès <ludo@gnu.org>2014-05-09 22:59:18 +0200
commit217a5b852e02775123a30131f63684c09bd6ac77 (patch)
tree89563dcc30851ee21da7f07ce04fc22b069dbea9 /gnu/services/base.scm
parente5c66f8c7bfb1f8c4162d19b3d01526164cfe2a4 (diff)
downloadguix-patches-217a5b852e02775123a30131f63684c09bd6ac77.tar
guix-patches-217a5b852e02775123a30131f63684c09bd6ac77.tar.gz
system: Automatically add essential services.
* gnu/services/base.scm (%base-services): Remove calls to 'host-name-service', 'user-processes-service', and 'root-file-system-service'. * gnu/system.scm (<operating-system>)[operating-system-services]: Rename to... [operating-system-user-services]: ... this. (essential-services, operating-system-services): New procedures. (operating-system-accounts, operating-system-etc-directory, operating-system-boot-script, operating-system-derivation): Adjust to new 'operating-system-services' return type.
Diffstat (limited to 'gnu/services/base.scm')
-rw-r--r--gnu/services/base.scm9
1 files changed, 1 insertions, 8 deletions
diff --git a/gnu/services/base.scm b/gnu/services/base.scm
index ae538ea41c..5157349aec 100644
--- a/gnu/services/base.scm
+++ b/gnu/services/base.scm
@@ -267,13 +267,6 @@ This is the GNU operating system, welcome!\n\n")))
(mingetty-service "tty6" #:motd motd)
(syslog-service)
(guix-service)
- (nscd-service)
-
- ;; FIXME: Make this an activation-time thing instead of a service.
- (host-name-service "gnu")
-
- ;; The "root" services.
- (user-processes-service)
- (root-file-system-service))))
+ (nscd-service))))
;;; base.scm ends here