Skip to content

Commit

Permalink
doc/faq: add nix channel setting
Browse files Browse the repository at this point in the history
Follow-up to Github issue #175
  • Loading branch information
astro committed Jan 19, 2024
1 parent ccf44d6 commit 81a0f05
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions doc/src/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,14 @@ environment.systemPackages = [ (
''
) ];
```

# Can I include my host's `<nixpkgs>` channel when building the VM?

Use the following configuration if you build your MicroVM with
channels, not Flakes:

```nix
nix.nixPath = [
"nixpkgs=${builtins.storePath <nixpkgs>}"
];
```

0 comments on commit 81a0f05

Please sign in to comment.