Allow substituting any vm command

This commit is contained in:
Manuel Thalmann 2024-04-30 15:00:02 +02:00
parent c428a2486d
commit 20f1bdaa13

View file

@ -1,13 +1,25 @@
{ config, lib, pkgs, ... }: { { config, lib, pkgs, ... }:
config = { let
# Replace native `qemu` with `remote-viewer` createVmRunner =
system.build = { vmVariant:
vmWithBootLoader = pkgs.writeShellApplication { pkgs.writeShellApplication {
name = "run-${config.system.name}-vm"; name = "run-${config.system.name}-vm";
text = '' text = ''
${config.virtualisation.vmVariant.system.build.vm}/bin/run-${config.system.name}-vm ${vmVariant.system.build.vm}/bin/run-${config.system.name}-vm
''; '';
}; };
in
{
config = {
# Replace native `qemu` with `remote-viewer`
system.build =
with {
inherit (config.virtualisation)
vmVariantWithBootLoader
;
};
{
vmWithBootLoader = createVmRunner vmVariantWithBootLoader;
}; };
virtualisation = virtualisation =
@ -28,8 +40,7 @@
}; };
}; };
in { in {
vmVariant = vmConfig;
vmVariantWithBootLoader = vmConfig; vmVariantWithBootLoader = vmConfig;
}; };
}; };
} }