nixos/proxmox-image: fix example rendering
This commit is contained in:
parent
0000004f80
commit
2048a8ca02
1 changed files with 6 additions and 4 deletions
|
@ -98,10 +98,12 @@ with lib;
|
||||||
qemuExtraConf = mkOption {
|
qemuExtraConf = mkOption {
|
||||||
type = with types; attrsOf (oneOf [ str int ]);
|
type = with types; attrsOf (oneOf [ str int ]);
|
||||||
default = {};
|
default = {};
|
||||||
example = literalExpression ''{
|
example = literalExpression ''
|
||||||
cpu = "host";
|
{
|
||||||
onboot = 1;
|
cpu = "host";
|
||||||
}'';
|
onboot = 1;
|
||||||
|
}
|
||||||
|
'';
|
||||||
description = lib.mdDoc ''
|
description = lib.mdDoc ''
|
||||||
Additional options appended to qemu-server.conf
|
Additional options appended to qemu-server.conf
|
||||||
'';
|
'';
|
||||||
|
|
Loading…
Reference in a new issue