diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-09-01T00·58-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-09-01T01·07+0000 |
commit | e472aa016e4d8bef79930d750c65e40ce21dba3a (patch) | |
tree | f07bc531d471ba312d52ad72de466b3682aec88d | |
parent | 912268ed5e009c08ad5309673d3c5c5633453a0a (diff) |
feat(tvix): Expose depot in the test vm r/1754
Expose depot to the test vm via NIX_PATH, so we can test the build of depot packages from inside the test vm. Change-Id: I26314634895ab1339f5715c0b0b261028eefdaa3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1923 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
-rw-r--r-- | third_party/nix/test-vm.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/nix/test-vm.nix b/third_party/nix/test-vm.nix index 534a3fc9304c..2a1056826852 100644 --- a/third_party/nix/test-vm.nix +++ b/third_party/nix/test-vm.nix @@ -10,6 +10,10 @@ let nix.package = depot.third_party.nix; virtualisation.qemu.options = [ "-nographic" ]; + + nix.nixPath = [ + "depot=${depot.depotPath}" + ]; }; system = pkgs.nixos { inherit configuration; }; |