From a90054eb2a8c8e3a980d4fe452c277e772cfd494 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dav=C3=AD=C3=B0=20Steinn=20Geirsson?= Date: Wed, 18 Mar 2026 19:15:16 +0000 Subject: [PATCH] revert: always include vmsilo-tray in guest rootfs The guest-side tray daemon is harmless when idle and keeping it in the rootfs allows all VMs to share the same image regardless of tray.enable. Co-Authored-By: Claude Opus 4.6 (1M context) --- modules/scripts.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/scripts.nix b/modules/scripts.nix index 3fa8dfa..ce010f4 100644 --- a/modules/scripts.nix +++ b/modules/scripts.nix @@ -498,7 +498,7 @@ let pkgs.callPackage ../rootfs-nixos { inherit (cfg._internal) wayland-proxy-virtwl sommelier; inherit soundConfig; - vmsilo-tray = if vm.tray.enable then cfg._internal.vmsilo-tray else null; + vmsilo-tray = cfg._internal.vmsilo-tray; trayLogLevel = cfg.vmsilo-tray.logLevel; waylandProxy = vm.waylandProxy; guestPrograms = vm.guestPrograms;