Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
78 lines
1.8 KiB
Nix
78 lines
1.8 KiB
Nix
{
|
|
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 `nixos-rebuild build-vm`.
|
|
'';
|
|
inherit (vmVariant) type;
|
|
default = { };
|
|
visible = "shallow";
|
|
};
|
|
|
|
virtualisation.vmVariantWithBootLoader = mkOption {
|
|
description = ''
|
|
Machine configuration to be added for the vm script produced by `nixos-rebuild build-vm-with-bootloader`.
|
|
'';
|
|
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;
|
|
};
|
|
|
|
virtualisation.vmVariant = {
|
|
options = {
|
|
virtualisation.vmVariant = lib.mkOption {
|
|
apply = _: throw "virtualisation.vmVariant*.virtualisation.vmVariant is not supported";
|
|
};
|
|
virtualisation.vmVariantWithBootLoader = lib.mkOption {
|
|
apply =
|
|
_: throw "virtualisation.vmVariant*.virtualisation.vmVariantWithBootloader is not supported";
|
|
};
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
# uses extendModules
|
|
meta.buildDocsInSandbox = false;
|
|
}
|