Allow substituting any vm command
This commit is contained in:
parent
c428a2486d
commit
20f1bdaa13
1 changed files with 36 additions and 25 deletions
|
@ -1,13 +1,25 @@
|
|||
{ config, lib, pkgs, ... }: {
|
||||
config = {
|
||||
# Replace native `qemu` with `remote-viewer`
|
||||
system.build = {
|
||||
vmWithBootLoader = pkgs.writeShellApplication {
|
||||
{ config, lib, pkgs, ... }:
|
||||
let
|
||||
createVmRunner =
|
||||
vmVariant:
|
||||
pkgs.writeShellApplication {
|
||||
name = "run-${config.system.name}-vm";
|
||||
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 =
|
||||
|
@ -28,7 +40,6 @@
|
|||
};
|
||||
};
|
||||
in {
|
||||
vmVariant = vmConfig;
|
||||
vmVariantWithBootLoader = vmConfig;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue