From b933f28c81cd51cc66b8b1af49bfaeae62f1fbf8 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Wed, 9 Jul 2025 13:01:47 -0500 Subject: [PATCH] sam: Enable spice-vdagent and qemuGuest services This allows for e.g. dynamic screen resize. --- sam/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sam/configuration.nix b/sam/configuration.nix index 4ea0848..a6b04bd 100644 --- a/sam/configuration.nix +++ b/sam/configuration.nix @@ -17,6 +17,9 @@ "/nix/var/nix/profiles/per-user/root/channels" ]; + services.spice-vdagentd.enable = true; + services.qemuGuest.enable = true; + # Bootloader. boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true;