tvl-depot/third_party/nix/test-vm.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
407 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let
configuration = { ... }: {
imports = [
"${pkgs.path}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
];
nix.package = depot.third_party.nix;
virtualisation.qemu.options = [ "-nographic" "-curses" ];
nix.nixPath = [
"depot=${depot.depotPath}"
];
};
system = depot.third_party.nixos { inherit configuration; };
in system.vm