Add qemu guest agent to all VMs

This commit is contained in:
2024-12-05 18:35:06 +01:00
parent b06aa943cc
commit 02ef7e861b
9 changed files with 66 additions and 28 deletions

6
common/vm/default.nix Normal file
View File

@@ -0,0 +1,6 @@
{ ... }:
{
imports = [
./qemu-guest.nix
];
}

4
common/vm/qemu-guest.nix Normal file
View File

@@ -0,0 +1,4 @@
{ ... }:
{
services.qemuGuest.enable = true;
}