diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-24 23:15:09 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-24 23:40:50 +0200 |
commit | 9fcc355529838f86f963dbdd7e47c0308df95a29 (patch) | |
tree | 7b3e985a8285060dfae43b208ed2b5b4ad289766 /gnu/system/vm.scm | |
parent | 30f25b033c7fbcdcc7050b1655fc832252255c7e (diff) | |
download | guix-9fcc355529838f86f963dbdd7e47c0308df95a29.tar.gz |
gnu: vm: Add a service for the Guix daemon.
* gnu/system/dmd.scm (guix-service): New procedure. * gnu/system/vm.scm (system-qemu-image): Use it.
Diffstat (limited to 'gnu/system/vm.scm')
-rw-r--r-- | gnu/system/vm.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/system/vm.scm b/gnu/system/vm.scm index a864ab3de3..64d778b602 100644 --- a/gnu/system/vm.scm +++ b/gnu/system/vm.scm @@ -382,7 +382,8 @@ It can be used to provide additional files, such as /etc files." (list (mingetty-service store "tty1") (mingetty-service store "tty2") (mingetty-service store "tty3") - (syslog-service store))) + (syslog-service store) + (guix-service store #:guix guix-0.4))) (parameterize ((%guile-for-build (package-derivation store guile-final))) (let* ((bash-drv (package-derivation store bash)) |