diff options
| author | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-02 23:17:56 +0100 |
|---|---|---|
| committer | Jakub Stachurski <j.stachurski@student.utwente.nl> | 2026-01-02 23:17:56 +0100 |
| commit | e25041e3722a716338a568a1395bb17c8e09e49c (patch) | |
| tree | 424062de12e55213a12324ba4e916f43176abb4b /modules/virt.nix | |
| parent | dca35cc9f01b47974783a2ad2f40382ceb364a09 (diff) | |
Add omega-relay prototype host
Diffstat (limited to 'modules/virt.nix')
| -rw-r--r-- | modules/virt.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/virt.nix b/modules/virt.nix index 53bd70a..7799bff 100644 --- a/modules/virt.nix +++ b/modules/virt.nix @@ -11,6 +11,7 @@ in options.addons.virtualisation = { host = lib.mkEnableOption "Allow to host vm's and containers"; guest = lib.mkEnableOption "Enable guest agents"; + isTestVM = lib.mkEnableOption "Enabled if the system is a test VM"; }; config = lib.mkMerge ([ @@ -34,6 +35,7 @@ in }) (lib.mkIf cfg.guest { services.spice-vdagentd.enable = true; + services.qemuGuest.enable = true; }) ]); } |
