mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
Merge pull request #742 from dasJ/fix/manual
Fix the manual by fixing string escape
This commit is contained in:
commit
74a12fdf53
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ in
|
||||||
images for a foreign architecture
|
images for a foreign architecture
|
||||||
'';
|
'';
|
||||||
default = null;
|
default = null;
|
||||||
example = lib.literalExpression "''${pkgs.qemu_kvm}/bin/qemu-system-aarch64";
|
example = lib.literalExpression "\${pkgs.qemu_kvm}/bin/qemu-system-aarch64";
|
||||||
};
|
};
|
||||||
imageBuilderPkgs = lib.mkOption {
|
imageBuilderPkgs = lib.mkOption {
|
||||||
type = lib.types.attrs;
|
type = lib.types.attrs;
|
||||||
|
|
Loading…
Reference in a new issue