summary refs log tree commit diff
path: root/nixos/modules/virtualisation/build-vm.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/virtualisation/build-vm.nix')
-rw-r--r--nixos/modules/virtualisation/build-vm.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/nixos/modules/virtualisation/build-vm.nix b/nixos/modules/virtualisation/build-vm.nix
deleted file mode 100644
index 4a4694950f9..00000000000
--- a/nixos/modules/virtualisation/build-vm.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ config, extendModules, lib, ... }:
-let
-
-  inherit (lib)
-    mkOption
-    ;
-
-  vmVariant = extendModules {
-    modules = [ ./qemu-vm.nix ];
-  };
-
-  vmVariantWithBootLoader = vmVariant.extendModules {
-    modules = [
-      ({ config, ... }: {
-        _file = "nixos/default.nix##vmWithBootLoader";
-        virtualisation.useBootLoader = true;
-        virtualisation.useEFIBoot =
-          config.boot.loader.systemd-boot.enable ||
-          config.boot.loader.efi.canTouchEfiVariables;
-      })
-    ];
-  };
-in
-{
-  options = {
-
-    virtualisation.vmVariant = mkOption {
-      description = ''
-        Machine configuration to be added for the vm script produced by <literal>nixos-rebuild build-vm</literal>.
-      '';
-      inherit (vmVariant) type;
-      default = {};
-      visible = "shallow";
-    };
-
-    virtualisation.vmVariantWithBootLoader = mkOption {
-      description = ''
-        Machine configuration to be added for the vm script produced by <literal>nixos-rebuild build-vm-with-bootloader</literal>.
-      '';
-      inherit (vmVariantWithBootLoader) type;
-      default = {};
-      visible = "shallow";
-    };
-
-  };
-
-  config = {
-
-    system.build = {
-      vm = lib.mkDefault config.virtualisation.vmVariant.system.build.vm;
-      vmWithBootLoader = lib.mkDefault config.virtualisation.vmVariantWithBootLoader.system.build.vm;
-    };
-
-  };
-
-  # uses extendModules
-  meta.buildDocsInSandbox = false;
-}