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 {
|
||||
type = with types; attrsOf (oneOf [ str int ]);
|
||||
default = {};
|
||||
example = literalExpression ''{
|
||||
cpu = "host";
|
||||
onboot = 1;
|
||||
}'';
|
||||
example = literalExpression ''
|
||||
{
|
||||
cpu = "host";
|
||||
onboot = 1;
|
||||
}
|
||||
'';
|
||||
description = lib.mdDoc ''
|
||||
Additional options appended to qemu-server.conf
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue