mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
services: libvirt: Add qemu field.
* gnu/services/virtualization.scm (libvirt-configuration): Add 'qemu' field. (libvirt-service-type): Replace 'qemu' package with the one specified in the service configuration.
This commit is contained in:
parent
2226d5b959
commit
d0fcce8baf
1 changed files with 5 additions and 1 deletions
|
@ -131,6 +131,10 @@ (define-configuration libvirt-configuration
|
|||
(libvirt
|
||||
(package libvirt)
|
||||
"Libvirt package.")
|
||||
(qemu
|
||||
(package qemu)
|
||||
"Qemu package.")
|
||||
|
||||
(listen-tls?
|
||||
(boolean #t)
|
||||
"Flag listening for secure TLS connections on the public TCP/IP port.
|
||||
|
@ -485,7 +489,7 @@ (define libvirt-service-type
|
|||
(lambda (config)
|
||||
(list
|
||||
(libvirt-configuration-libvirt config)
|
||||
qemu)))
|
||||
(libvirt-configuration-qemu config))))
|
||||
(service-extension activation-service-type
|
||||
%libvirt-activation)
|
||||
(service-extension shepherd-root-service-type
|
||||
|
|
Loading…
Reference in a new issue