This commit is contained in:
Sandro - 2023-10-29 19:36:44 +01:00
parent be418e8261
commit df33a192cc
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -201,13 +201,13 @@ lib.attrsets.mapAttrs
${createSymlinks name} ${createSymlinks name}
if [[ -n NIXOS_REBUILD ]]; then if [[ -n $NIXOS_REBUILD ]]; then
echo "Restarting MicroVM..." echo "Restarting MicroVM..."
systemctl restart microvm@${name}.service systemctl restart microvm@${name}.service
fi fi
END END
if [[ -z NIXOS_REBUILD ]]; then if [[ -z $NIXOS_REBUILD ]]; then
echo "Switching to configuration..." echo "Switching to configuration..."
ssh ${target} -- ${toplevelOutPath}/bin/switch-to-configuration "''${@:-switch}" ssh ${target} -- ${toplevelOutPath}/bin/switch-to-configuration "''${@:-switch}"
fi fi