Apply the wrapper to the default vm

This commit is contained in:
Manuel Thalmann 2024-04-30 23:22:35 +02:00
parent 20f1bdaa13
commit 591ba4e96e

View file

@ -1,25 +1,45 @@
{ config, lib, pkgs, ... }:
let
createVmRunner =
vmVariant:
pkgs.writeShellApplication {
name = "run-${config.system.name}-vm";
text = ''
${vmVariant.system.build.vm}/bin/run-${config.system.name}-vm
'';
};
in
{
{ config, lib, options, pkgs, ... }: {
options = {};
config = {
# Replace native `qemu` with `remote-viewer`
system.build =
with {
inherit (config.virtualisation)
vmVariantWithBootLoader
;
};
{
vmWithBootLoader = createVmRunner vmVariantWithBootLoader;
vm =
let
packageName = "custom-nixos-vm";
mergedSystem =
with options.system;
lib.mergeDefinitions
build.loc
build.type
(lib.lists.forEach
(
builtins.filter
(item:
!(lib.path.hasPrefix ./. (/. + item.file)))
build.definitionsWithLocations)
(item: { inherit (item) file value; }));
in
lib.mkForce (
if (mergedSystem.mergedValue.vm.name == packageName)
then
mergedSystem.mergedValue.vm
else
let
wrapped = pkgs.writeShellApplication {
name = "run-${config.system.name}-vm";
text = ''
${mergedSystem.mergedValue.vm}/bin/run-${config.system.name}-vm
'';
};
in
# Rename package to `nixos-vm`
pkgs.symlinkJoin {
name = packageName;
paths = [ wrapped ];
});
};
virtualisation =