Enable settings for both vms and vms with bootloaders

This commit is contained in:
Manuel Thalmann 2024-04-09 23:10:19 +02:00
parent fbd09f50a2
commit d5023ed7ad

View file

@ -19,7 +19,9 @@
machineConfig machineConfig
]; ];
virtualisation.vmVariant = { virtualisation =
let
config = {
virtualisation.qemu.options = [ virtualisation.qemu.options = [
"-display sdl" "-display sdl"
]; ];
@ -31,6 +33,10 @@
}; };
}; };
}; };
in {
vmVariant = config;
vmVariantWithBootLoader = config;
};
# Networking # Networking
networking.hostName = name; networking.hostName = name;