about summary refs log tree commit diff
path: root/third_party/nix/test-vm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/nix/test-vm.nix')
-rw-r--r--third_party/nix/test-vm.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/third_party/nix/test-vm.nix b/third_party/nix/test-vm.nix
deleted file mode 100644
index 2a10568268..0000000000
--- a/third_party/nix/test-vm.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ depot, pkgs, ... }:
-
-let
-
-  configuration = { ... }: {
-    imports = [
-      "${pkgs.nixpkgsSrc}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
-    ];
-
-    nix.package = depot.third_party.nix;
-
-    virtualisation.qemu.options = [ "-nographic" ];
-
-    nix.nixPath = [
-      "depot=${depot.depotPath}"
-    ];
-  };
-
-  system = pkgs.nixos { inherit configuration; };
-
-in system.vm