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:
Luca Bruno 2015-03-04 12:05:04 +01:00
parent 38c67a358e
commit b93e8bab3a

View file

@ -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 =