From 296aac6864545023ec89b32b57c4cbf32e0764e0 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Thu, 11 Sep 2025 13:36:54 +0200 Subject: [PATCH] feat(x1): configure gnome-remote-desktop systemd service - Added `wantedBy = ["graphical.target"]` to the `gnome-remote-desktop` service configuration. - Ensures the service starts automatically with the graphical session. --- systems/x86_64-linux/x1/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/systems/x86_64-linux/x1/default.nix b/systems/x86_64-linux/x1/default.nix index be76785..97252ec 100644 --- a/systems/x86_64-linux/x1/default.nix +++ b/systems/x86_64-linux/x1/default.nix @@ -133,6 +133,9 @@ with lib.metacfg; }; services.gnome.gnome-remote-desktop.enable = true; + systemd.services.gnome-remote-desktop = { + wantedBy = [ "graphical.target" ]; + }; environment.sessionVariables = { LIBVA_DRIVER_NAME = "iHD";