nixos/xen: do not use derivation in the default values
The xen package is broken on i686, so this would break the generation of the nixos manual.
This commit is contained in:
parent
38c67a358e
commit
b93e8bab3a
|
@ -59,11 +59,12 @@ in
|
|||
|
||||
virtualisation.xen.stored =
|
||||
mkOption {
|
||||
default = "${pkgs.xen}/bin/oxenstored";
|
||||
default = null;
|
||||
description =
|
||||
''
|
||||
Xen Store daemon to use.
|
||||
Xen Store daemon to use. Defaults to oxenstored of the xen package.
|
||||
'';
|
||||
apply = x: if x == null then "${xen}/bin/oxenstored" else x;
|
||||
};
|
||||
|
||||
virtualisation.xen.trace =
|
||||
|
|
Loading…
Reference in New Issue
Block a user