virtualisation-xen: fix defaultText interpolation

This commit is contained in:
Daiderd Jordan 2017-03-11 00:09:22 +01:00
parent 8db26dbee4
commit b52af49d36
No known key found for this signature in database
GPG Key ID: D02435D05B810C96

View File

@ -40,7 +40,7 @@ in
virtualisation.xen.qemu = mkOption {
type = types.path;
default = "${pkgs.xen}/lib/xen/bin/qemu-system-i386";
defaultText = "''${pkgs.xen}/lib/xen/bin/qemu-system-i386";
defaultText = "\${pkgs.xen}/lib/xen/bin/qemu-system-i386";
example = literalExample "''${pkgs.qemu_xen-light}/bin/qemu-system-i386";
description = ''
The qemu binary to use for Dom-0 backend.