Clean up the vm script creation

This commit is contained in:
Manuel Thalmann 2024-05-01 04:14:37 +02:00
parent 90368fcda8
commit 7f862474b4

View file

@ -122,6 +122,8 @@ in {
vm
else
let
command = "${vm}/bin/run-${config.system.name}-vm";
prefix =
lib.concatStringsSep " " (
lib.optionals config.virtualisation.runAsRoot (
@ -138,7 +140,7 @@ in {
name = "run-${config.system.name}-vm";
text = lib.strings.concatLines (
[
"${prefix} ${vm}/bin/run-${config.system.name}-vm ${suffix}"
"${prefix} ${command} ${suffix}"
] ++ (
let
spice = config.virtualisation.qemu.spice;