diff --git a/doc/src/faq.md b/doc/src/faq.md index 58d13ce1..a9ed65c4 100644 --- a/doc/src/faq.md +++ b/doc/src/faq.md @@ -111,3 +111,14 @@ environment.systemPackages = [ ( '' ) ]; ``` + +# Can I include my host's `` channel when building the VM? + +Use the following configuration if you build your MicroVM with +channels, not Flakes: + +```nix +nix.nixPath = [ + "nixpkgs=${builtins.storePath }" +]; +```