Skip to content

Commit 81a0f05

Browse files
committed
doc/faq: add nix channel setting
Follow-up to Github issue #175
1 parent ccf44d6 commit 81a0f05

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

doc/src/faq.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,14 @@ environment.systemPackages = [ (
111111
''
112112
) ];
113113
```
114+
115+
# Can I include my host's `<nixpkgs>` channel when building the VM?
116+
117+
Use the following configuration if you build your MicroVM with
118+
channels, not Flakes:
119+
120+
```nix
121+
nix.nixPath = [
122+
"nixpkgs=${builtins.storePath <nixpkgs>}"
123+
];
124+
```

0 commit comments

Comments
 (0)