From 5b36e65c7c6eea6d4452e9e4f1f72ea376d8928f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Janne=20He=C3=9F?= Date: Wed, 21 Aug 2024 12:56:32 +0200 Subject: [PATCH] Fix the manual by fixing string escape --- module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module.nix b/module.nix index c9feff1..a2f944c 100644 --- a/module.nix +++ b/module.nix @@ -18,7 +18,7 @@ in images for a foreign architecture ''; 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 { type = lib.types.attrs;