diff options
Diffstat (limited to 'third_party/nix/test-vm.nix')
-rw-r--r-- | third_party/nix/test-vm.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/third_party/nix/test-vm.nix b/third_party/nix/test-vm.nix deleted file mode 100644 index 8b00e5515ba2..000000000000 --- a/third_party/nix/test-vm.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ 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 |