about summary refs log tree commit diff
path: root/third_party/nix/test-vm.nix
blob: 8b00e5515ba2c4861ff36f8f11da39075f44bccf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ 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.path}"
    ];
  };

  system = depot.third_party.nixos { inherit configuration; };
in
system.vm